Title: [256389] branches/safari-609-branch/Source/WebKit
Revision
256389
Author
alanc...@apple.com
Date
2020-02-11 15:55:19 -0800 (Tue, 11 Feb 2020)

Log Message

Cherry-pick r255519. rdar://problem/59298166

    Unreviewed macOS build fix after r255518

    * UIProcess/WebPageProxy.cpp:
    (WebKit::WebPageProxy::handleGestureEvent):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@255519 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-609-branch/Source/WebKit/ChangeLog (256388 => 256389)


--- branches/safari-609-branch/Source/WebKit/ChangeLog	2020-02-11 23:55:17 UTC (rev 256388)
+++ branches/safari-609-branch/Source/WebKit/ChangeLog	2020-02-11 23:55:19 UTC (rev 256389)
@@ -1,5 +1,23 @@
 2020-02-11  Alan Coon  <alanc...@apple.com>
 
+        Cherry-pick r255519. rdar://problem/59298166
+
+    Unreviewed macOS build fix after r255518
+    
+    * UIProcess/WebPageProxy.cpp:
+    (WebKit::WebPageProxy::handleGestureEvent):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@255519 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2020-01-31  Chris Dumez  <cdu...@apple.com>
+
+            Unreviewed macOS build fix after r255518
+
+            * UIProcess/WebPageProxy.cpp:
+            (WebKit::WebPageProxy::handleGestureEvent):
+
+2020-02-11  Alan Coon  <alanc...@apple.com>
+
         Cherry-pick r255518. rdar://problem/59298166
 
     [ iOS ] imported/w3c/web-platform-tests/IndexedDB/key-generators/reading-autoincrement-indexes-cursors.any.serviceworker.html is flaky failing.

Modified: branches/safari-609-branch/Source/WebKit/UIProcess/WebPageProxy.cpp (256388 => 256389)


--- branches/safari-609-branch/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-02-11 23:55:17 UTC (rev 256388)
+++ branches/safari-609-branch/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-02-11 23:55:19 UTC (rev 256389)
@@ -2819,7 +2819,7 @@
     m_gestureEventQueue.append(event);
     // FIXME: Consider doing some coalescing here.
 
-    m_process->startResponsivenessTimer((event.type() == WebEvent::GestureStart || event.type() == WebEvent::GestureChange) ? WebProcessProxy::UseLazyStop::Yes ? WebProcessProxy::UseLazyStop::No);
+    m_process->startResponsivenessTimer((event.type() == WebEvent::GestureStart || event.type() == WebEvent::GestureChange) ? WebProcessProxy::UseLazyStop::Yes : WebProcessProxy::UseLazyStop::No);
 
     send(Messages::EventDispatcher::GestureEvent(m_webPageID, event), 0);
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to