Title: [246982] releases/WebKitGTK/webkit-2.24/Source/WebKit
Revision
246982
Author
[email protected]
Date
2019-07-01 02:21:53 -0700 (Mon, 01 Jul 2019)

Log Message

Merge r246638 - [GTK] Make startup pause available in DEVELOPER_MODE rather than DEBUG.
https://bugs.webkit.org/show_bug.cgi?id=199069

Reviewed by Michael Catanzaro.

* WebProcess/gtk/WebProcessMainGtk.cpp: Allow developers to pause
the web process in DEVELOPER_MODE rather than only DEBUG, matching
the WPE behaviour and also the purpose of DEVELOPER_MODE.

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.24/Source/WebKit/ChangeLog (246981 => 246982)


--- releases/WebKitGTK/webkit-2.24/Source/WebKit/ChangeLog	2019-07-01 09:21:50 UTC (rev 246981)
+++ releases/WebKitGTK/webkit-2.24/Source/WebKit/ChangeLog	2019-07-01 09:21:53 UTC (rev 246982)
@@ -1,3 +1,14 @@
+2019-06-20  Charlie Turner  <[email protected]>
+
+        [GTK] Make startup pause available in DEVELOPER_MODE rather than DEBUG.
+        https://bugs.webkit.org/show_bug.cgi?id=199069
+
+        Reviewed by Michael Catanzaro.
+
+        * WebProcess/gtk/WebProcessMainGtk.cpp: Allow developers to pause
+        the web process in DEVELOPER_MODE rather than only DEBUG, matching
+        the WPE behaviour and also the purpose of DEVELOPER_MODE.
+
 2019-06-12  Michael Catanzaro  <[email protected]>
 
         [WPE][GTK] Deprecate WebSQL APIs

Modified: releases/WebKitGTK/webkit-2.24/Source/WebKit/WebProcess/gtk/WebProcessMainGtk.cpp (246981 => 246982)


--- releases/WebKitGTK/webkit-2.24/Source/WebKit/WebProcess/gtk/WebProcessMainGtk.cpp	2019-07-01 09:21:50 UTC (rev 246981)
+++ releases/WebKitGTK/webkit-2.24/Source/WebKit/WebProcess/gtk/WebProcessMainGtk.cpp	2019-07-01 09:21:53 UTC (rev 246982)
@@ -45,7 +45,7 @@
 public:
     bool platformInitialize() override
     {
-#ifndef NDEBUG
+#if ENABLE(DEVELOPER_MODE)
         if (g_getenv("WEBKIT2_PAUSE_WEB_PROCESS_ON_LAUNCH"))
             g_usleep(30 * G_USEC_PER_SEC);
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to