Title: [209635] trunk/Source/WebKit2
Revision
209635
Author
ander...@apple.com
Date
2016-12-09 15:30:43 -0800 (Fri, 09 Dec 2016)

Log Message

Once we can send Mach messages again, make sure to send any pending outgoing messages
https://bugs.webkit.org/show_bug.cgi?id=165693

Reviewed by Brady Eidson.

* Platform/IPC/mac/ConnectionMac.mm:
(IPC::Connection::initializeSendSource):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (209634 => 209635)


--- trunk/Source/WebKit2/ChangeLog	2016-12-09 23:22:31 UTC (rev 209634)
+++ trunk/Source/WebKit2/ChangeLog	2016-12-09 23:30:43 UTC (rev 209635)
@@ -1,3 +1,13 @@
+2016-12-09  Anders Carlsson  <ander...@apple.com>
+
+        Once we can send Mach messages again, make sure to send any pending outgoing messages
+        https://bugs.webkit.org/show_bug.cgi?id=165693
+
+        Reviewed by Brady Eidson.
+
+        * Platform/IPC/mac/ConnectionMac.mm:
+        (IPC::Connection::initializeSendSource):
+
 2016-12-09  Beth Dakin  <bda...@apple.com>
 
         Password fields should not show the emoji button in TouchBar

Modified: trunk/Source/WebKit2/Platform/IPC/mac/ConnectionMac.mm (209634 => 209635)


--- trunk/Source/WebKit2/Platform/IPC/mac/ConnectionMac.mm	2016-12-09 23:22:31 UTC (rev 209634)
+++ trunk/Source/WebKit2/Platform/IPC/mac/ConnectionMac.mm	2016-12-09 23:30:43 UTC (rev 209635)
@@ -397,6 +397,7 @@
 
         if (data & DISPATCH_MACH_SEND_POSSIBLE) {
             connection->sendMessage(WTFMove(connection->m_pendingOutgoingMachMessage));
+            connection->sendOutgoingMessages();
             return;
         }
     });
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to