Title: [240587] trunk/Source/WebKit
Revision
240587
Author
grao...@webkit.org
Date
2019-01-28 09:33:38 -0800 (Mon, 28 Jan 2019)

Log Message

Limit user-agent interactions based on the touch-action property on iOS
https://bugs.webkit.org/show_bug.cgi?id=193447

Unreviewed build fix.

* UIProcess/ios/WKContentViewInteraction.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (240586 => 240587)


--- trunk/Source/WebKit/ChangeLog	2019-01-28 17:29:44 UTC (rev 240586)
+++ trunk/Source/WebKit/ChangeLog	2019-01-28 17:33:38 UTC (rev 240587)
@@ -1,3 +1,12 @@
+2019-01-28  Antoine Quint  <grao...@apple.com>
+
+        Limit user-agent interactions based on the touch-action property on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=193447
+
+        Unreviewed build fix.
+
+        * UIProcess/ios/WKContentViewInteraction.mm:
+
 2019-01-28  Brent Fulgham  <bfulg...@apple.com>
 
         Remove the UIProcess components of the ResourceLoadStatistics code

Modified: trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm (240586 => 240587)


--- trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2019-01-28 17:29:44 UTC (rev 240586)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2019-01-28 17:33:38 UTC (rev 240587)
@@ -1163,6 +1163,7 @@
 }
 
 #if ENABLE(POINTER_EVENTS)
+#if ENABLE(TOUCH_EVENTS)
 - (void)_handleTouchActionsForTouchEvent:(const WebKit::NativeWebTouchEvent&)touchEvent
 {
     auto* scrollingCoordinator = _page->scrollingCoordinatorProxy();
@@ -1191,6 +1192,7 @@
             scrollingCoordinator->clearTouchDataForTouchIdentifier(touchPoint.identifier());
     }
 }
+#endif
 
 - (void)_resetPanningPreventionFlags
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to