Changeset 139515 in webkit


Ignore:
Timestamp:
Jan 11, 2013, 4:04:23 PM (12 years ago)
Author:
ap@apple.com
Message:

[WK2] Make it possible to send sync messages from secondary threads
https://bugs.webkit.org/show_bug.cgi?id=106708

Apply another review comment (overlooked a "ditto").

  • Platform/CoreIPC/Connection.cpp: (CoreIPC::Connection::sendSyncMessage):
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r139514 r139515  
     12013-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
    1112013-01-11  Alexey Proskuryakov  <ap@apple.com>
    212
  • trunk/Source/WebKit2/Platform/CoreIPC/Connection.cpp

    r139514 r139515  
    406406    }
    407407
    408     if (!isValid()) {
    409         didFailToSendSyncMessage();
     408    if (!isValid())
    410409        return nullptr;
    411     }
    412410
    413411    // Push the pending sync reply information on our stack.
     
    436434        m_pendingSyncReplies.removeLast();
    437435    }
    438 
    439     // FIXME: Should we call didFailToSendSyncMessage()? It may be unexpected to get in on a background thread.
    440436
    441437    return reply.release();
Note: See TracChangeset for help on using the changeset viewer.