Changeset 139515 in webkit
- Timestamp:
- Jan 11, 2013, 4:04:23 PM (12 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r139514 r139515 1 2013-01-11 Alexey Proskuryakov <ap@apple.com> 2 3 [WK2] Make it possible to send sync messages from secondary threads 4 https://bugs.webkit.org/show_bug.cgi?id=106708 5 6 Apply another review comment (overlooked a "ditto"). 7 8 * Platform/CoreIPC/Connection.cpp: 9 (CoreIPC::Connection::sendSyncMessage): 10 1 11 2013-01-11 Alexey Proskuryakov <ap@apple.com> 2 12 -
trunk/Source/WebKit2/Platform/CoreIPC/Connection.cpp
r139514 r139515 406 406 } 407 407 408 if (!isValid()) { 409 didFailToSendSyncMessage(); 408 if (!isValid()) 410 409 return nullptr; 411 }412 410 413 411 // Push the pending sync reply information on our stack. … … 436 434 m_pendingSyncReplies.removeLast(); 437 435 } 438 439 // FIXME: Should we call didFailToSendSyncMessage()? It may be unexpected to get in on a background thread.440 436 441 437 return reply.release();
Note:
See TracChangeset
for help on using the changeset viewer.