Title: [201591] trunk/Source/WebKit2
Revision
201591
Author
[email protected]
Date
2016-06-01 21:38:46 -0700 (Wed, 01 Jun 2016)

Log Message

Try to fix ENABLE(IOS_TOUCH_EVENTS) builds.

* WebProcess/WebPage/EventDispatcher.cpp:
(WebKit::EventDispatcher::touchEvent):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (201590 => 201591)


--- trunk/Source/WebKit2/ChangeLog	2016-06-02 04:26:32 UTC (rev 201590)
+++ trunk/Source/WebKit2/ChangeLog	2016-06-02 04:38:46 UTC (rev 201591)
@@ -1,3 +1,10 @@
+2016-06-01  Dan Bernstein  <[email protected]>
+
+        Try to fix ENABLE(IOS_TOUCH_EVENTS) builds.
+
+        * WebProcess/WebPage/EventDispatcher.cpp:
+        (WebKit::EventDispatcher::touchEvent):
+
 2016-05-31  Darin Adler  <[email protected]>
 
         Audit RenderObject casts and fix problems and style issues found

Modified: trunk/Source/WebKit2/WebProcess/WebPage/EventDispatcher.cpp (201590 => 201591)


--- trunk/Source/WebKit2/WebProcess/WebPage/EventDispatcher.cpp	2016-06-02 04:26:32 UTC (rev 201590)
+++ trunk/Source/WebKit2/WebProcess/WebPage/EventDispatcher.cpp	2016-06-02 04:38:46 UTC (rev 201591)
@@ -190,7 +190,7 @@
 
     if (updateListWasEmpty) {
         RunLoop::main().dispatch([protectedThis = Ref<EventDispatcher>(*this)]() mutable {
-            eventDispatcher->dispatchTouchEvents();
+            protectedThis->dispatchTouchEvents();
         });
     }
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to