Title: [240226] trunk/Source/WebKit
Revision
240226
Author
mcatanz...@igalia.com
Date
2019-01-20 21:09:34 -0800 (Sun, 20 Jan 2019)

Log Message

Unreviewed, fix -Wreturn-type warning
https://bugs.webkit.org/show_bug.cgi?id=193333
<rdar://problem/45649489>

* UIProcess/Automation/WebAutomationSession.cpp:
(WebKit::toProtocol):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (240225 => 240226)


--- trunk/Source/WebKit/ChangeLog	2019-01-21 05:04:21 UTC (rev 240225)
+++ trunk/Source/WebKit/ChangeLog	2019-01-21 05:09:34 UTC (rev 240226)
@@ -1,3 +1,12 @@
+2019-01-20  Michael Catanzaro  <mcatanz...@igalia.com>
+
+        Unreviewed, fix -Wreturn-type warning
+        https://bugs.webkit.org/show_bug.cgi?id=193333
+        <rdar://problem/45649489>
+
+        * UIProcess/Automation/WebAutomationSession.cpp:
+        (WebKit::toProtocol):
+
 2019-01-20  chris fleizach  <cfleiz...@apple.com>
 
         AX: Support returning relative frames for accessibility

Modified: trunk/Source/WebKit/UIProcess/Automation/WebAutomationSession.cpp (240225 => 240226)


--- trunk/Source/WebKit/UIProcess/Automation/WebAutomationSession.cpp	2019-01-21 05:04:21 UTC (rev 240225)
+++ trunk/Source/WebKit/UIProcess/Automation/WebAutomationSession.cpp	2019-01-21 05:09:34 UTC (rev 240226)
@@ -306,6 +306,8 @@
     case API::AutomationSessionClient::BrowsingContextPresentation::Window:
         return Inspector::Protocol::Automation::BrowsingContextPresentation::Window;
     }
+
+    RELEASE_ASSERT_NOT_REACHED();
 }
 
 void WebAutomationSession::createBrowsingContext(const String* optionalPresentationHint, Ref<CreateBrowsingContextCallback>&& callback)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to