Title: [165936] trunk/Source/WebKit2
Revision
165936
Author
timothy_hor...@apple.com
Date
2014-03-19 17:50:26 -0700 (Wed, 19 Mar 2014)

Log Message

Address late review comment and style nit after r165934.

* UIProcess/ios/ViewGestureControllerIOS.mm:
(WebKit::ViewGestureController::beginSwipeGesture):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (165935 => 165936)


--- trunk/Source/WebKit2/ChangeLog	2014-03-20 00:37:46 UTC (rev 165935)
+++ trunk/Source/WebKit2/ChangeLog	2014-03-20 00:50:26 UTC (rev 165936)
@@ -1,5 +1,12 @@
 2014-03-19  Tim Horton  <timothy_hor...@apple.com>
 
+        Address late review comment and style nit after r165934.
+
+        * UIProcess/ios/ViewGestureControllerIOS.mm:
+        (WebKit::ViewGestureController::beginSwipeGesture):
+
+2014-03-19  Tim Horton  <timothy_hor...@apple.com>
+
         [iOS][WebKit2] Back-forward swipe doesn't always complete with fingers down
         https://bugs.webkit.org/show_bug.cgi?id=130489
         <rdar://problem/16027007>

Modified: trunk/Source/WebKit2/UIProcess/ios/ViewGestureControllerIOS.mm (165935 => 165936)


--- trunk/Source/WebKit2/UIProcess/ios/ViewGestureControllerIOS.mm	2014-03-20 00:37:46 UTC (rev 165935)
+++ trunk/Source/WebKit2/UIProcess/ios/ViewGestureControllerIOS.mm	2014-03-20 00:50:26 UTC (rev 165936)
@@ -54,7 +54,7 @@
 - (instancetype)initWithViewGestureController:(WebKit::ViewGestureController*)gestureController gestureRecognizerView:(UIView *)gestureRecognizerView;
 @end
 
-@interface _UIViewControllerTransitionContext (Details)
+@interface _UIViewControllerTransitionContext (WKDetails)
 @property (nonatomic, copy, setter=_setInteractiveUpdateHandler:)  void (^_interactiveUpdateHandler)(BOOL interactionIsOver, CGFloat percentComplete, BOOL transitionCompleted, _UIViewControllerTransitionContext *);
 @end
 
@@ -198,7 +198,7 @@
     [transitionContext _setInteractor:transition];
     [transitionContext _setTransitionIsInFlight:YES];
     [transitionContext _setCompletionHandler:^(_UIViewControllerTransitionContext *context, BOOL didComplete) { endSwipeGesture(targetItem, context, !didComplete); }];
-    [transitionContext _setInteractiveUpdateHandler: ^(BOOL, CGFloat, BOOL, _UIViewControllerTransitionContext *) { }];
+    [transitionContext _setInteractiveUpdateHandler:^(BOOL, CGFloat, BOOL, _UIViewControllerTransitionContext *) { }];
 
     [transition setAnimationController:animationController.get()];
     [transition startInteractiveTransition:transitionContext.get()];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to