Title: [164080] trunk/Tools
Revision
164080
Author
[email protected]
Date
2014-02-13 17:30:10 -0800 (Thu, 13 Feb 2014)

Log Message

Unreviewed build fix for Mountain Lion.

* DumpRenderTree/mac/EventSendingController.mm: Provide definition
for kCGScrollWheelEventScrollPhase if it isn't found in the
system headers.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (164079 => 164080)


--- trunk/Tools/ChangeLog	2014-02-14 01:24:09 UTC (rev 164079)
+++ trunk/Tools/ChangeLog	2014-02-14 01:30:10 UTC (rev 164080)
@@ -1,3 +1,11 @@
+2014-02-13  Brent Fulgham  <[email protected]>
+
+        Unreviewed build fix for Mountain Lion.
+
+        * DumpRenderTree/mac/EventSendingController.mm: Provide definition
+        for kCGScrollWheelEventScrollPhase if it isn't found in the
+        system headers.
+
 2014-02-04  Gustavo Noronha Silva  <[email protected]>
 
         [GTK][CMake] Generate GObject DOM bindings .symbols files

Modified: trunk/Tools/DumpRenderTree/mac/EventSendingController.mm (164079 => 164080)


--- trunk/Tools/DumpRenderTree/mac/EventSendingController.mm	2014-02-14 01:24:09 UTC (rev 164079)
+++ trunk/Tools/DumpRenderTree/mac/EventSendingController.mm	2014-02-14 01:30:10 UTC (rev 164080)
@@ -703,6 +703,10 @@
     [self mouseScrollByX:x andY:y continuously:NO];
 }
 
+#if !PLATFORM(IOS) && __MAC_OS_X_VERSION_MIN_REQUIRED <= 1090
+const uint32_t kCGScrollWheelEventMomentumPhase = 123;
+#endif
+
 - (void)mouseScrollByX:(int)x andY:(int)y withWheel:(NSString*)phaseName andMomentumPhases:(NSString*)momentumName
 {
 #if !PLATFORM(IOS)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to