Title: [220550] trunk/Source/WebKit
Revision
220550
Author
ryanhad...@apple.com
Date
2017-08-10 15:08:34 -0700 (Thu, 10 Aug 2017)

Log Message

Fix iOS simulator build after change "[WTF] Move TextStream into WTF"
https://bugs.webkit.org/show_bug.cgi?id=175211

Patch by Ross Kirsling <ross.kirsl...@sony.com> on 2017-08-10
Reviewed by Myles C. Maxfield.

* UIProcess/API/Cocoa/WKWebView.mm:
(-[WKWebView _scrollByContentOffset:]):
(-[WKWebView _navigationGestureDidBegin]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (220549 => 220550)


--- trunk/Source/WebKit/ChangeLog	2017-08-10 21:51:15 UTC (rev 220549)
+++ trunk/Source/WebKit/ChangeLog	2017-08-10 22:08:34 UTC (rev 220550)
@@ -1,3 +1,14 @@
+2017-08-10  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        Fix iOS simulator build after change "[WTF] Move TextStream into WTF"
+        https://bugs.webkit.org/show_bug.cgi?id=175211
+
+        Reviewed by Myles C. Maxfield.
+
+        * UIProcess/API/Cocoa/WKWebView.mm:
+        (-[WKWebView _scrollByContentOffset:]):
+        (-[WKWebView _navigationGestureDidBegin]):
+
 2017-08-10  Chris Dumez  <cdu...@apple.com>
 
         [Beacon] Do connect-src CSP check on redirects as well

Modified: trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm (220549 => 220550)


--- trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm	2017-08-10 21:51:15 UTC (rev 220549)
+++ trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.mm	2017-08-10 22:08:34 UTC (rev 220550)
@@ -1865,7 +1865,7 @@
         return;
     [_contentView willStartZoomOrScroll];
 
-    LOG_WITH_STREAM(VisibleRects, stream << "_scrollByContentOffset: scrolling to " << boundedOffset);
+    LOG_WITH_STREAM(VisibleRects, stream << "_scrollByContentOffset: scrolling to " << WebCore::FloatPoint(boundedOffset));
 
     [_scrollView setContentOffset:boundedOffset animated:YES];
 }
@@ -2679,7 +2679,7 @@
     _frozenVisibleContentRect = [self convertRect:fullViewRect toView:_contentView.get()];
     _frozenUnobscuredContentRect = [self convertRect:unobscuredRect toView:_contentView.get()];
 
-    LOG_WITH_STREAM(VisibleRects, stream << "_navigationGestureDidBegin: freezing visibleContentRect " << _frozenVisibleContentRect.value() << " UnobscuredContentRect " << _frozenUnobscuredContentRect.value());
+    LOG_WITH_STREAM(VisibleRects, stream << "_navigationGestureDidBegin: freezing visibleContentRect " << WebCore::FloatRect(_frozenVisibleContentRect.value()) << " UnobscuredContentRect " << WebCore::FloatRect(_frozenUnobscuredContentRect.value()));
 }
 
 - (void)_navigationGestureDidEnd
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to