Changeset 228330 in webkit


Ignore:
Timestamp:
Feb 9, 2018 10:59:54 AM (6 years ago)
Author:
Ross Kirsling
Message:

Use REQUEST_ANIMATION_FRAME_DISPLAY_MONITOR on any non-Windows port.
https://bugs.webkit.org/show_bug.cgi?id=182623

Reviewed by Alex Christensen.

PerformanceTests:

  • StitchMarker/wtf/Platform.h:

Simplify #if.

Source/WTF:

  • wtf/Platform.h:

Simplify #if.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/PerformanceTests/ChangeLog

    r228237 r228330  
     12018-02-09  Ross Kirsling  <ross.kirsling@sony.com>
     2
     3        Use REQUEST_ANIMATION_FRAME_DISPLAY_MONITOR on any non-Windows port.
     4        https://bugs.webkit.org/show_bug.cgi?id=182623
     5
     6        Reviewed by Alex Christensen.
     7
     8        * StitchMarker/wtf/Platform.h:
     9        Simplify #if.
     10
    1112018-02-01  Antti Koivisto  <antti@apple.com>
    212
  • trunk/PerformanceTests/StitchMarker/wtf/Platform.h

    r225753 r228330  
    11031103#endif
    11041104
    1105 #if PLATFORM(COCOA) || PLATFORM(GTK) || PLATFORM(WPE)
     1105#if !PLATFORM(WIN)
    11061106#define USE_REQUEST_ANIMATION_FRAME_DISPLAY_MONITOR 1
    11071107#endif
  • trunk/Source/WTF/ChangeLog

    r228306 r228330  
     12018-02-09  Ross Kirsling  <ross.kirsling@sony.com>
     2
     3        Use REQUEST_ANIMATION_FRAME_DISPLAY_MONITOR on any non-Windows port.
     4        https://bugs.webkit.org/show_bug.cgi?id=182623
     5
     6        Reviewed by Alex Christensen.
     7
     8        * wtf/Platform.h:
     9        Simplify #if.
     10
    1112018-02-08  Filip Pizlo  <fpizlo@apple.com>
    212
  • trunk/Source/WTF/wtf/Platform.h

    r227792 r228330  
    11291129#endif
    11301130
    1131 #if PLATFORM(COCOA) || PLATFORM(GTK) || PLATFORM(WPE)
     1131#if !PLATFORM(WIN)
    11321132#define USE_REQUEST_ANIMATION_FRAME_DISPLAY_MONITOR 1
    11331133#endif
Note: See TracChangeset for help on using the changeset viewer.