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

Changeset 276518 in webkit


Ignore:
Timestamp:
Apr 23, 2021, 2:32:46 PM (5 years ago)
Author:
Russell Epstein
Message:

Unreviewed build fix. rdar://problem/76963040

WebKit2/UIProcess/AuxiliaryProcessProxy.cpp:163:10: error: use of undeclared identifier 'isMainRunLoop'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-611-branch/Source/WebKit/UIProcess/AuxiliaryProcessProxy.cpp

    r276405 r276518  
    160160{
    161161    // FIXME: We should turn this into a RELEASE_ASSERT().
    162     ASSERT(isMainRunLoop());
    163     if (!isMainRunLoop()) {
     162    ASSERT(WTF::isMainRunLoop());
     163    if (!WTF::isMainRunLoop()) {
    164164        callOnMainRunLoop([protectedThis = makeRef(*this), encoder = WTFMove(encoder), sendOptions, asyncReplyInfo = WTFMove(asyncReplyInfo), shouldStartProcessThrottlerActivity]() mutable {
    165165            protectedThis->sendMessage(WTFMove(encoder), sendOptions, WTFMove(asyncReplyInfo), shouldStartProcessThrottlerActivity);
     
    234234{
    235235    ASSERT(!m_connection);
    236     ASSERT(isMainRunLoop());
     236    ASSERT(WTF::isMainRunLoop());
    237237
    238238    if (!IPC::Connection::identifierIsValid(connectionIdentifier))
Note: See TracChangeset for help on using the changeset viewer.