Changeset 246638 in webkit


Ignore:
Timestamp:
Jun 20, 2019 10:04:43 AM (5 years ago)
Author:
cturner@igalia.com
Message:

[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.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r246635 r246638  
     12019-06-20  Charlie Turner  <cturner@igalia.com>
     2
     3        [GTK] Make startup pause available in DEVELOPER_MODE rather than DEBUG.
     4        https://bugs.webkit.org/show_bug.cgi?id=199069
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * WebProcess/gtk/WebProcessMainGtk.cpp: Allow developers to pause
     9        the web process in DEVELOPER_MODE rather than only DEBUG, matching
     10        the WPE behaviour and also the purpose of DEVELOPER_MODE.
     11
    1122019-06-20  Alexander Mikhaylenko  <exalm7659@gmail.com>
    213
  • trunk/Source/WebKit/WebProcess/gtk/WebProcessMainGtk.cpp

    r242205 r246638  
    4646    bool platformInitialize() override
    4747    {
    48 #ifndef NDEBUG
     48#if ENABLE(DEVELOPER_MODE)
    4949        if (g_getenv("WEBKIT2_PAUSE_WEB_PROCESS_ON_LAUNCH"))
    5050            g_usleep(30 * G_USEC_PER_SEC);
Note: See TracChangeset for help on using the changeset viewer.