Title: [165096] trunk/Source/WebKit2
Revision
165096
Author
[email protected]
Date
2014-03-04 21:55:28 -0800 (Tue, 04 Mar 2014)

Log Message

Fix the build after r165095

Patch by Benjamin Poulain <[email protected]> on 2014-03-04

* UIProcess/API/Cocoa/WKWebView.mm:
(-[WKWebView _keyboardChangedWithInfo:adjustScrollView:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (165095 => 165096)


--- trunk/Source/WebKit2/ChangeLog	2014-03-05 05:37:40 UTC (rev 165095)
+++ trunk/Source/WebKit2/ChangeLog	2014-03-05 05:55:28 UTC (rev 165096)
@@ -1,5 +1,12 @@
 2014-03-04  Benjamin Poulain  <[email protected]>
 
+        Fix the build after r165095
+
+        * UIProcess/API/Cocoa/WKWebView.mm:
+        (-[WKWebView _keyboardChangedWithInfo:adjustScrollView:]):
+
+2014-03-04  Benjamin Poulain  <[email protected]>
+
         [iOS][WK2] Account for the keyboard when computing the unobscuredRect
         https://bugs.webkit.org/show_bug.cgi?id=129660
 

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm (165095 => 165096)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm	2014-03-05 05:37:40 UTC (rev 165095)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm	2014-03-05 05:55:28 UTC (rev 165096)
@@ -556,7 +556,7 @@
 - (void)_keyboardChangedWithInfo:(NSDictionary *)keyboardInfo adjustScrollView:(BOOL)adjustScrollView
 {
     _keyboardVerticalOverlap = [[UIPeripheralHost sharedInstance] getVerticalOverlapForView:self usingKeyboardInfo:keyboardInfo];
-    [self _updateVisibleContentRectsWithStableState:YES];
+    [self _updateVisibleContentRects];
 
     if (adjustScrollView)
         [_scrollView _adjustForAutomaticKeyboardInfo:keyboardInfo animated:YES lastAdjustment:&_lastAdjustmentForScroller];
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to