Title: [221457] trunk/Source/WebKit
Revision
221457
Author
[email protected]
Date
2017-08-31 16:31:55 -0700 (Thu, 31 Aug 2017)

Log Message

Fix error in protocol revving
https://bugs.webkit.org/show_bug.cgi?id=176191

Protocol definition was mastered out of later iOS submissions, causing them to not build.

Reviewed by Tim Horton.

* UIProcess/ios/WKContentViewInteraction.mm:
(-[WKContentView changeSelectionWithGestureAt:withGesture:withState:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (221456 => 221457)


--- trunk/Source/WebKit/ChangeLog	2017-08-31 23:27:02 UTC (rev 221456)
+++ trunk/Source/WebKit/ChangeLog	2017-08-31 23:31:55 UTC (rev 221457)
@@ -1,3 +1,15 @@
+2017-08-31  Megan Gardner  <[email protected]>
+
+        Fix error in protocol revving
+        https://bugs.webkit.org/show_bug.cgi?id=176191
+
+        Protocol definition was mastered out of later iOS submissions, causing them to not build.
+
+        Reviewed by Tim Horton.
+
+        * UIProcess/ios/WKContentViewInteraction.mm:
+        (-[WKContentView changeSelectionWithGestureAt:withGesture:withState:]):
+
 2017-08-31  Youenn Fablet  <[email protected]>
 
         Update CacheStorage caches only if it is updated

Modified: trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm (221456 => 221457)


--- trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2017-08-31 23:27:02 UTC (rev 221456)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2017-08-31 23:31:55 UTC (rev 221457)
@@ -2552,12 +2552,10 @@
     return _textSelectionAssistant != nil;
 }
 
-#if __IPHONE_OS_VERSION_MAX_ALLOWED < 120000
 - (void)changeSelectionWithGestureAt:(CGPoint)point withGesture:(UIWKGestureType)gestureType withState:(UIGestureRecognizerState)state
 {
     [self changeSelectionWithGestureAt:point withGesture:gestureType withState:state withFlags:UIWKNone];
 }
-#endif
 
 - (void)changeSelectionWithGestureAt:(CGPoint)point withGesture:(UIWKGestureType)gestureType withState:(UIGestureRecognizerState)state withFlags:(UIWKSelectionFlags)flags
 {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to