Title: [209483] trunk/Source/WebKit2
Revision
209483
Author
ander...@apple.com
Date
2016-12-07 14:44:19 -0800 (Wed, 07 Dec 2016)

Log Message

Fix build.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (209482 => 209483)


--- trunk/Source/WebKit2/ChangeLog	2016-12-07 22:36:46 UTC (rev 209482)
+++ trunk/Source/WebKit2/ChangeLog	2016-12-07 22:44:19 UTC (rev 209483)
@@ -1,5 +1,12 @@
 2016-12-07  Anders Carlsson  <ander...@apple.com>
 
+        Fix build.
+
+        * Platform/IPC/mac/ConnectionMac.mm:
+        (IPC::Connection::open):
+
+2016-12-07  Anders Carlsson  <ander...@apple.com>
+
         Rename the connection sources to better indicate what data direction they are used for
         https://bugs.webkit.org/show_bug.cgi?id=165548
 

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


--- trunk/Source/WebKit2/Platform/IPC/mac/ConnectionMac.mm	2016-12-07 22:36:46 UTC (rev 209482)
+++ trunk/Source/WebKit2/Platform/IPC/mac/ConnectionMac.mm	2016-12-07 22:44:19 UTC (rev 209483)
@@ -231,7 +231,7 @@
 
 #if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED <= 101000
     if (m_exceptionPort) {
-        m_exceptionPortDataAvailableSource = createDataAvailableSource(m_exceptionPort, m_connectionQueue, [connection] {
+        m_exceptionPortDataAvailableSource = createReceiveSource(m_exceptionPort, m_connectionQueue, [connection] {
             connection->exceptionSourceEventHandler();
         });
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to