Title: [122479] trunk/Source/WebKit/chromium
Revision
122479
Author
[email protected]
Date
2012-07-12 10:29:42 -0700 (Thu, 12 Jul 2012)

Log Message

Unreviewed, rolling out r122477.
http://trac.webkit.org/changeset/122477
https://bugs.webkit.org/show_bug.cgi?id=91103

Broke Chromium Mac build

* src/mac/WebInputEventFactory.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (122478 => 122479)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-07-12 17:21:06 UTC (rev 122478)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-07-12 17:29:42 UTC (rev 122479)
@@ -1,3 +1,13 @@
+2012-07-12  Tony Chang  <[email protected]>
+
+        Unreviewed, rolling out r122477.
+        http://trac.webkit.org/changeset/122477
+        https://bugs.webkit.org/show_bug.cgi?id=91103
+
+        Broke Chromium Mac build
+
+        * src/mac/WebInputEventFactory.mm:
+
 2012-07-12  Robert Sesek  <[email protected]>
 
         [chromium][Mac] r122400 broke 10.6 build

Modified: trunk/Source/WebKit/chromium/src/mac/WebInputEventFactory.mm (122478 => 122479)


--- trunk/Source/WebKit/chromium/src/mac/WebInputEventFactory.mm	2012-07-12 17:21:06 UTC (rev 122478)
+++ trunk/Source/WebKit/chromium/src/mac/WebInputEventFactory.mm	2012-07-12 17:29:42 UTC (rev 122479)
@@ -28,14 +28,13 @@
 #include "WebInputEventFactory.h"
 
 #include <ApplicationServices/ApplicationServices.h>
-#include <Availability.h>
 #import <Cocoa/Cocoa.h>
 
 #import "KeyEventCocoa.h"
 #include "WebInputEvent.h"
 #include <wtf/ASCIICType.h>
 
-#if __MAC_OS_X_VERSION_MAX_ALLOWED < 1070
+#if __MAC_OS_X_VERSION_MIN_REQUIRED <= 1060
 
 // Additional Lion APIs.
 enum {
@@ -54,9 +53,9 @@
 - (NSEventPhase)momentumPhase;
 @end
 
-#endif  // __MAC_OS_X_VERSION_MAX_ALLOWED < 1070
+#endif  // __MAC_OS_X_VERSION_MIN_REQUIRED <= 1060
 
-#if __MAC_OS_X_VERSION_MAX_ALLOWED <= 1050
+#if __MAC_OS_X_VERSION_MIN_REQUIRED == 1050
 
 // These are not defined in the 10.5 SDK but are defined in later SDKs inside
 // a MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 #ifdef.
@@ -65,7 +64,7 @@
     NSEventTypeEndGesture       = 20
 };
 
-#endif  // __MAC_OS_X_VERSION_MAX_ALLOWED <= 1050
+#endif  // __MAC_OS_X_VERSION_MIN_REQUIRED == 1050
 
 namespace WebKit {
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to