Title: [261928] trunk/Source/WebKit
Revision
261928
Author
[email protected]
Date
2020-05-20 10:24:27 -0700 (Wed, 20 May 2020)

Log Message

Update some media logging
https://bugs.webkit.org/show_bug.cgi?id=212109
<rdar://problem/63424816>

Unreviewed, remove a change unintentionally included in r261899.


* UIProcess/ios/fullscreen/WKFullScreenWindowControllerIOS.mm:
(-[WKFullScreenWindowController _interactivePinchDismissChanged:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (261927 => 261928)


--- trunk/Source/WebKit/ChangeLog	2020-05-20 16:29:50 UTC (rev 261927)
+++ trunk/Source/WebKit/ChangeLog	2020-05-20 17:24:27 UTC (rev 261928)
@@ -1,3 +1,14 @@
+2020-05-20  Eric Carlson  <[email protected]>
+
+        Update some media logging
+        https://bugs.webkit.org/show_bug.cgi?id=212109
+        <rdar://problem/63424816>
+
+        Unreviewed, remove a change unintentionally included in r261899.
+
+        * UIProcess/ios/fullscreen/WKFullScreenWindowControllerIOS.mm:
+        (-[WKFullScreenWindowController _interactivePinchDismissChanged:]):
+
 2020-05-20  Andy Estes  <[email protected]>
 
         [Mac] UI processes spin when creating the "Share" context menu item

Modified: trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenWindowControllerIOS.mm (261927 => 261928)


--- trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenWindowControllerIOS.mm	2020-05-20 16:29:50 UTC (rev 261927)
+++ trunk/Source/WebKit/UIProcess/ios/fullscreen/WKFullScreenWindowControllerIOS.mm	2020-05-20 17:24:27 UTC (rev 261928)
@@ -1050,11 +1050,6 @@
         return;
     }
 
-    if (_interactivePinchDismissGestureRecognizer.get().state == UIGestureRecognizerStateCancelled) {
-        [_interactiveDismissTransitionCoordinator cancelInteractiveTransition];
-        return;
-    }
-
     CGFloat scale = [_interactivePinchDismissGestureRecognizer scale];
     CGFloat velocity = [_interactivePinchDismissGestureRecognizer velocity];
     CGFloat progress = std::min(1., std::max(0., 1 - scale));
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to