Title: [255519] trunk/Source/WebKit
Revision
255519
Author
[email protected]
Date
2020-01-31 13:05:37 -0800 (Fri, 31 Jan 2020)

Log Message

Unreviewed macOS build fix after r255518

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (255518 => 255519)


--- trunk/Source/WebKit/ChangeLog	2020-01-31 20:58:43 UTC (rev 255518)
+++ trunk/Source/WebKit/ChangeLog	2020-01-31 21:05:37 UTC (rev 255519)
@@ -1,5 +1,12 @@
 2020-01-31  Chris Dumez  <[email protected]>
 
+        Unreviewed macOS build fix after r255518
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::handleGestureEvent):
+
+2020-01-31  Chris Dumez  <[email protected]>
+
         [ iOS ] imported/w3c/web-platform-tests/IndexedDB/key-generators/reading-autoincrement-indexes-cursors.any.serviceworker.html is flaky failing.
         https://bugs.webkit.org/show_bug.cgi?id=206934
         <rdar://problem/58991581>

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (255518 => 255519)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-01-31 20:58:43 UTC (rev 255518)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2020-01-31 21:05:37 UTC (rev 255519)
@@ -2843,7 +2843,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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to