Changeset 206040 in webkit


Ignore:
Timestamp:
Sep 16, 2016 12:44:50 PM (8 years ago)
Author:
ddkilzer@apple.com
Message:

ASSERT accidentally commented out in r204916
<https://webkit.org/b/162077>

Reviewed by Anders Carlsson.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::terminateProcess): Comment in the ASSERT
back in.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r206033 r206040  
     12016-09-16  David Kilzer  <ddkilzer@apple.com>
     2
     3        ASSERT accidentally commented out in r204916
     4        <https://webkit.org/b/162077>
     5
     6        Reviewed by Anders Carlsson.
     7
     8        * UIProcess/WebPageProxy.cpp:
     9        (WebKit::WebPageProxy::terminateProcess): Comment in the ASSERT
     10        back in.
     11
    1122016-09-16  Wenson Hsieh  <wenson_hsieh@apple.com>
    213
  • trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp

    r206033 r206040  
    23522352    // FIXME: A client can terminate the page at any time, so we should do something more meaningful than assert and fall apart in release builds.
    23532353    // See also <https://bugs.webkit.org/show_bug.cgi?id=136012>.
    2354 //    ASSERT(m_process->state() != WebProcessProxy::State::Launching);
     2354    ASSERT(m_process->state() != WebProcessProxy::State::Launching);
    23552355
    23562356    // NOTE: This uses a check of m_isValid rather than calling isValid() since
Note: See TracChangeset for help on using the changeset viewer.