Title: [282456] trunk/Source/WebKit
Revision
282456
Author
[email protected]
Date
2021-09-15 08:23:16 -0700 (Wed, 15 Sep 2021)

Log Message

[WPE][GTK] Silence -Wswitch warning enumeration value ‘ExceededProcessCountLimit’ not handled in switch
https://bugs.webkit.org/show_bug.cgi?id=230280

Patch by Michael Catanzaro <[email protected]> on 2021-09-15
Reviewed by Darin Adler.

* UIProcess/API/glib/WebKitNavigationClient.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (282455 => 282456)


--- trunk/Source/WebKit/ChangeLog	2021-09-15 14:57:33 UTC (rev 282455)
+++ trunk/Source/WebKit/ChangeLog	2021-09-15 15:23:16 UTC (rev 282456)
@@ -1,3 +1,12 @@
+2021-09-15  Michael Catanzaro  <[email protected]>
+
+        [WPE][GTK] Silence -Wswitch warning enumeration value ‘ExceededProcessCountLimit’ not handled in switch
+        https://bugs.webkit.org/show_bug.cgi?id=230280
+
+        Reviewed by Darin Adler.
+
+        * UIProcess/API/glib/WebKitNavigationClient.cpp:
+
 2021-09-15  Tim Horton  <[email protected]>
 
         Remove the "Replace WebKitAdditions in Framework Headers" build phase

Modified: trunk/Source/WebKit/UIProcess/API/glib/WebKitNavigationClient.cpp (282455 => 282456)


--- trunk/Source/WebKit/UIProcess/API/glib/WebKitNavigationClient.cpp	2021-09-15 14:57:33 UTC (rev 282455)
+++ trunk/Source/WebKit/UIProcess/API/glib/WebKitNavigationClient.cpp	2021-09-15 15:23:16 UTC (rev 282456)
@@ -122,6 +122,7 @@
         case ProcessTerminationReason::RequestedByNetworkProcess:
         case ProcessTerminationReason::NavigationSwap:
         case ProcessTerminationReason::RequestedByGPUProcess:
+        case ProcessTerminationReason::ExceededProcessCountLimit:
             break;
         }
         return false;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to