Title: [166346] trunk/Source/WebKit2
Revision
166346
Author
timothy_hor...@apple.com
Date
2014-03-26 23:13:33 -0700 (Wed, 26 Mar 2014)

Log Message

Blind speculative iOS build fix.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (166345 => 166346)


--- trunk/Source/WebKit2/ChangeLog	2014-03-27 05:05:55 UTC (rev 166345)
+++ trunk/Source/WebKit2/ChangeLog	2014-03-27 06:13:33 UTC (rev 166346)
@@ -1,3 +1,10 @@
+2014-03-26  Tim Horton  <timothy_hor...@apple.com>
+
+        Blind speculative iOS build fix.
+
+        * WebProcess/WebPage/ios/WebPageIOS.mm:
+        (WebKit::WebPage::viewportConfigurationChanged):
+
 2014-03-26  Benjamin Poulain  <bpoul...@apple.com>
 
         [iOS][WK2] <rdar://problem/16265272> REGRESSION (WebKit2): Some pages appear blank until you scroll

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


--- trunk/Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm	2014-03-27 05:05:55 UTC (rev 166345)
+++ trunk/Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm	2014-03-27 06:13:33 UTC (rev 166346)
@@ -1711,7 +1711,7 @@
 
         IntRect unobscuredContentRect(scrollPosition, minimumLayoutSizeInDocumentCoordinate);
         frameView.setUnobscuredContentRect(unobscuredContentRect);
-        frameView.setScrollVelocity(0, 0, 0, monotonicallyIncreasingTime());
+        frameView.setScrollVelocity(0, 0, monotonicallyIncreasingTime());
 
         // FIXME: We could send down the obscured margins to find a better exposed rect and unobscured rect.
         // It is not a big deal at the moment because the tile coverage will always extend past the obscured bottom inset.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to