Title: [282879] trunk/Source/WebKit
Revision
282879
Author
megan_gard...@apple.com
Date
2021-09-22 10:07:21 -0700 (Wed, 22 Sep 2021)

Log Message

Build fix for 230521
https://bugs.webkit.org/show_bug.cgi?id=230629

Reviewed by Wenson Hsieh.

* UIProcess/ios/WKContentViewInteraction.mm:
(toGestureType):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (282878 => 282879)


--- trunk/Source/WebKit/ChangeLog	2021-09-22 16:37:27 UTC (rev 282878)
+++ trunk/Source/WebKit/ChangeLog	2021-09-22 17:07:21 UTC (rev 282879)
@@ -1,3 +1,13 @@
+2021-09-22  Megan Gardner  <megan_gard...@apple.com>
+
+        Build fix for 230521
+        https://bugs.webkit.org/show_bug.cgi?id=230629
+
+        Reviewed by Wenson Hsieh.
+
+        * UIProcess/ios/WKContentViewInteraction.mm:
+        (toGestureType):
+
 2021-09-22  Philippe Normand  <pnorm...@igalia.com>
 
         [Flatpak SDK] Switch runtime to 21.08 SDK

Modified: trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm (282878 => 282879)


--- trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2021-09-22 16:37:27 UTC (rev 282878)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2021-09-22 17:07:21 UTC (rev 282879)
@@ -4166,9 +4166,10 @@
         return WebKit::GestureType::TwoFingerSingleTap;
     case UIWKGesturePhraseBoundary:
         return WebKit::GestureType::PhraseBoundary;
+    default:
+        ASSERT_NOT_REACHED();
+        return WebKit::GestureType::Loupe;
     }
-    ASSERT_NOT_REACHED();
-    return WebKit::GestureType::Loupe;
 }
 
 static inline UIWKGestureType toUIWKGestureType(WebKit::GestureType gestureType)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to