Title: [208986] trunk/Source/WebKit2
Revision
208986
Author
[email protected]
Date
2016-11-26 23:27:25 -0800 (Sat, 26 Nov 2016)

Log Message

Fix the iOS build.

* WebProcess/WebPage/ios/WebPageIOS.mm:
(WebKit::WebPage::eventThrottlingDelay):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (208985 => 208986)


--- trunk/Source/WebKit2/ChangeLog	2016-11-27 06:08:16 UTC (rev 208985)
+++ trunk/Source/WebKit2/ChangeLog	2016-11-27 07:27:25 UTC (rev 208986)
@@ -1,3 +1,10 @@
+2016-11-26  Simon Fraser  <[email protected]>
+
+        Fix the iOS build.
+
+        * WebProcess/WebPage/ios/WebPageIOS.mm:
+        (WebKit::WebPage::eventThrottlingDelay):
+
 2016-11-26  Yusuke Suzuki  <[email protected]>
 
         [WTF] Import std::optional reference implementation as WTF::Optional

Modified: trunk/Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm (208985 => 208986)


--- trunk/Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm	2016-11-27 06:08:16 UTC (rev 208985)
+++ trunk/Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm	2016-11-27 07:27:25 UTC (rev 208986)
@@ -2137,7 +2137,7 @@
     if (m_isInStableState || m_estimatedLatency <= Seconds(1.0 / 60))
         return 0_s;
 
-    return std::min(m_estimatedLatency.value() * 2, 1_s);
+    return std::min(m_estimatedLatency * 2, 1_s);
 }
 
 void WebPage::syncApplyAutocorrection(const String& correction, const String& originalText, bool& correctionApplied)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to