Changeset 165841 in webkit


Ignore:
Timestamp:
Mar 18, 2014 1:45:27 PM (10 years ago)
Author:
andersca@apple.com
Message:

REGRESSION: Visited link coloring seems to be completely broken in tip of tree
https://bugs.webkit.org/show_bug.cgi?id=130419
<rdar://problem/16337850>

Reviewed by Dan Bernstein.

Make sure to send any queued up messages before calling connectionWillOpen so we'll ensure
FIFO ordering if any messages are sent from within connectionWillOpen.

  • Shared/ChildProcessProxy.cpp:

(WebKit::ChildProcessProxy::didFinishLaunching):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r165839 r165841  
     12014-03-18  Anders Carlsson  <andersca@apple.com>
     2
     3        REGRESSION: Visited link coloring seems to be completely broken in tip of tree
     4        https://bugs.webkit.org/show_bug.cgi?id=130419
     5        <rdar://problem/16337850>
     6
     7        Reviewed by Dan Bernstein.
     8
     9        Make sure to send any queued up messages before calling connectionWillOpen so we'll ensure
     10        FIFO ordering if any messages are sent from within connectionWillOpen.
     11
     12        * Shared/ChildProcessProxy.cpp:
     13        (WebKit::ChildProcessProxy::didFinishLaunching):
     14
    1152014-03-18  Joseph Pecoraro  <pecoraro@apple.com>
    216
  • trunk/Source/WebKit2/Shared/ChildProcessProxy.cpp

    r164912 r165841  
    133133#endif
    134134
    135     connectionWillOpen(m_connection.get());
    136     m_connection->open();
    137 
    138135    for (size_t i = 0; i < m_pendingMessages.size(); ++i) {
    139136        std::unique_ptr<IPC::MessageEncoder> message = std::move(m_pendingMessages[i].first);
     
    141138        m_connection->sendMessage(std::move(message), messageSendFlags);
    142139    }
     140
     141    connectionWillOpen(m_connection.get());
     142    m_connection->open();
    143143
    144144    m_pendingMessages.clear();
Note: See TracChangeset for help on using the changeset viewer.