Title: [207709] trunk/Source/WebKit2
Revision
207709
Author
m...@apple.com
Date
2016-10-22 00:23:28 -0700 (Sat, 22 Oct 2016)

Log Message

[iOS] _webViewWillEndNavigationGesture:withNavigationToBackForwardListItem: is never called
https://bugs.webkit.org/show_bug.cgi?id=163758

Reviewed by Darin Adler.

* UIProcess/ios/ViewGestureControllerIOS.mm:
(WebKit::ViewGestureController::beginSwipeGesture): Don’t reset the interactive update
  handler.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (207708 => 207709)


--- trunk/Source/WebKit2/ChangeLog	2016-10-22 06:38:36 UTC (rev 207708)
+++ trunk/Source/WebKit2/ChangeLog	2016-10-22 07:23:28 UTC (rev 207709)
@@ -1,3 +1,14 @@
+2016-10-22  Dan Bernstein  <m...@apple.com>
+
+        [iOS] _webViewWillEndNavigationGesture:withNavigationToBackForwardListItem: is never called
+        https://bugs.webkit.org/show_bug.cgi?id=163758
+
+        Reviewed by Darin Adler.
+
+        * UIProcess/ios/ViewGestureControllerIOS.mm:
+        (WebKit::ViewGestureController::beginSwipeGesture): Don’t reset the interactive update
+          handler.
+
 2016-10-21  David Kilzer  <ddkil...@apple.com>
 
         Bug 163762: IntSize::area() should used checked arithmetic

Modified: trunk/Source/WebKit2/UIProcess/ios/ViewGestureControllerIOS.mm (207708 => 207709)


--- trunk/Source/WebKit2/UIProcess/ios/ViewGestureControllerIOS.mm	2016-10-22 06:38:36 UTC (rev 207708)
+++ trunk/Source/WebKit2/UIProcess/ios/ViewGestureControllerIOS.mm	2016-10-22 07:23:28 UTC (rev 207709)
@@ -229,7 +229,6 @@
         if (auto gestureController = gestureControllerForPage(pageID))
             gestureController->endSwipeGesture(targetItem.get(), context, !didComplete);
     }];
-    [m_swipeTransitionContext _setInteractiveUpdateHandler:^(BOOL, CGFloat, BOOL, _UIViewControllerTransitionContext *) { }];
 
     [transition setAnimationController:animationController.get()];
     [transition startInteractiveTransition:m_swipeTransitionContext.get()];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to