⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 252772 in webkit


Ignore:
Timestamp:
Nov 22, 2019, 6:51:25 AM (7 years ago)
Author:
Carlos Garcia Campos
Message:

Unreviewed. Fix GTK/WPE debug build after r252770

Just remove the ASSERT instead, since it now always receive a newly created Ref.

Source/JavaScriptCore:

  • inspector/remote/glib/RemoteInspectorGlib.cpp:

(Inspector::RemoteInspector::setupConnection):

Source/WebDriver:

  • glib/SessionHostGlib.cpp:

(WebDriver::SessionHost::setupConnection):

Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r252771 r252772  
     12019-11-22  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed. Fix GTK/WPE debug build after r252770
     4
     5        Just remove the ASSERT instead, since it now always receive a newly created Ref.
     6
     7        * inspector/remote/glib/RemoteInspectorGlib.cpp:
     8        (Inspector::RemoteInspector::setupConnection):
     9
    1102019-11-22  Carlos Garcia Campos  <cgarcia@igalia.com>
    211
  • trunk/Source/JavaScriptCore/inspector/remote/glib/RemoteInspectorGlib.cpp

    r252771 r252772  
    137137    LockHolder lock(m_mutex);
    138138
    139     ASSERT(connection.ptr());
    140139    ASSERT(!m_socketConnection);
    141 
    142140    m_socketConnection = WTFMove(connection);
    143141    if (!m_targetMap.isEmpty())
  • trunk/Source/WebDriver/ChangeLog

    r252771 r252772  
     12019-11-22  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed. Fix GTK/WPE debug build after r252770
     4
     5        Just remove the ASSERT instead, since it now always receive a newly created Ref.
     6
     7        * glib/SessionHostGlib.cpp:
     8        (WebDriver::SessionHost::setupConnection):
     9
    1102019-11-22  Carlos Garcia Campos  <cgarcia@igalia.com>
    211
  • trunk/Source/WebDriver/glib/SessionHostGlib.cpp

    r252771 r252772  
    208208{
    209209    ASSERT(!m_socketConnection);
    210     ASSERT(connection.ptr());
    211210    m_socketConnection = WTFMove(connection);
    212211}
Note: See TracChangeset for help on using the changeset viewer.