Title: [240238] trunk/Source/WebCore
Revision
240238
Author
[email protected]
Date
2019-01-21 11:23:01 -0800 (Mon, 21 Jan 2019)

Log Message

REGRESSION (r240201): Add a POINTER_EVENTS feature flag
https://bugs.webkit.org/show_bug.cgi?id=193577
<rdar://problem/47408511>

* dom/ios/PointerEventIOS.cpp: Add ENABLE(POINTER_EVENTS) macro
to fix tvOS & watchOS builds.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (240237 => 240238)


--- trunk/Source/WebCore/ChangeLog	2019-01-21 19:01:19 UTC (rev 240237)
+++ trunk/Source/WebCore/ChangeLog	2019-01-21 19:23:01 UTC (rev 240238)
@@ -1,3 +1,12 @@
+2019-01-21  David Kilzer  <[email protected]>
+
+        REGRESSION (r240201): Add a POINTER_EVENTS feature flag
+        https://bugs.webkit.org/show_bug.cgi?id=193577
+        <rdar://problem/47408511>
+
+        * dom/ios/PointerEventIOS.cpp: Add ENABLE(POINTER_EVENTS) macro
+        to fix tvOS & watchOS builds.
+
 2019-01-15  Darin Adler  <[email protected]>
 
         Use references rather than pointers for register/unregister functions, and more

Modified: trunk/Source/WebCore/dom/ios/PointerEventIOS.cpp (240237 => 240238)


--- trunk/Source/WebCore/dom/ios/PointerEventIOS.cpp	2019-01-21 19:01:19 UTC (rev 240237)
+++ trunk/Source/WebCore/dom/ios/PointerEventIOS.cpp	2019-01-21 19:23:01 UTC (rev 240238)
@@ -26,7 +26,7 @@
 #import "config.h"
 #import "PointerEvent.h"
 
-#if ENABLE(TOUCH_EVENTS) && PLATFORM(IOS_FAMILY)
+#if ENABLE(POINTER_EVENTS) && ENABLE(TOUCH_EVENTS) && PLATFORM(IOS_FAMILY)
 
 #import "EventNames.h"
 
@@ -75,4 +75,4 @@
 
 } // namespace WebCore
 
-#endif // ENABLE(TOUCH_EVENTS) && PLATFORM(IOS_FAMILY)
+#endif // ENABLE(POINTER_EVENTS) && ENABLE(TOUCH_EVENTS) && PLATFORM(IOS_FAMILY)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to