Changeset 276518 in webkit
- Timestamp:
- Apr 23, 2021, 2:32:46 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-611-branch/Source/WebKit/UIProcess/AuxiliaryProcessProxy.cpp
r276405 r276518 160 160 { 161 161 // FIXME: We should turn this into a RELEASE_ASSERT(). 162 ASSERT( isMainRunLoop());163 if (! isMainRunLoop()) {162 ASSERT(WTF::isMainRunLoop()); 163 if (!WTF::isMainRunLoop()) { 164 164 callOnMainRunLoop([protectedThis = makeRef(*this), encoder = WTFMove(encoder), sendOptions, asyncReplyInfo = WTFMove(asyncReplyInfo), shouldStartProcessThrottlerActivity]() mutable { 165 165 protectedThis->sendMessage(WTFMove(encoder), sendOptions, WTFMove(asyncReplyInfo), shouldStartProcessThrottlerActivity); … … 234 234 { 235 235 ASSERT(!m_connection); 236 ASSERT( isMainRunLoop());236 ASSERT(WTF::isMainRunLoop()); 237 237 238 238 if (!IPC::Connection::identifierIsValid(connectionIdentifier))
Note:
See TracChangeset
for help on using the changeset viewer.