Title: [164915] trunk/Source/WebKit2
- Revision
- 164915
- Author
- [email protected]
- Date
- 2014-03-01 01:08:04 -0800 (Sat, 01 Mar 2014)
Log Message
Unreviewed follow-up to r164905 and r164912.
* Platform/IPC/Connection.h: Only declare setShouldCloseConnectionOnMachExceptions() for the Mac port.
* UIProcess/Plugins/PluginProcessProxy.cpp:
(WebKit::PluginProcessProxy::didFinishLaunching): Only call setShouldCloseConnectionOnMachExceptions() on the Mac port.
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (164914 => 164915)
--- trunk/Source/WebKit2/ChangeLog 2014-03-01 09:01:58 UTC (rev 164914)
+++ trunk/Source/WebKit2/ChangeLog 2014-03-01 09:08:04 UTC (rev 164915)
@@ -1,3 +1,11 @@
+2014-03-01 Zan Dobersek <[email protected]>
+
+ Unreviewed follow-up to r164905 and r164912.
+
+ * Platform/IPC/Connection.h: Only declare setShouldCloseConnectionOnMachExceptions() for the Mac port.
+ * UIProcess/Plugins/PluginProcessProxy.cpp:
+ (WebKit::PluginProcessProxy::didFinishLaunching): Only call setShouldCloseConnectionOnMachExceptions() on the Mac port.
+
2014-03-01 Gavin Barraclough <[email protected]>
Split UserActivity/CountedUserActivity
Modified: trunk/Source/WebKit2/Platform/IPC/Connection.h (164914 => 164915)
--- trunk/Source/WebKit2/Platform/IPC/Connection.h 2014-03-01 09:01:58 UTC (rev 164914)
+++ trunk/Source/WebKit2/Platform/IPC/Connection.h 2014-03-01 09:08:04 UTC (rev 164915)
@@ -133,7 +133,7 @@
Client* client() const { return m_client; }
-#if !PLATFORM(IOS)
+#if PLATFORM(MAC)
void setShouldCloseConnectionOnMachExceptions();
#endif
Modified: trunk/Source/WebKit2/UIProcess/Plugins/PluginProcessProxy.cpp (164914 => 164915)
--- trunk/Source/WebKit2/UIProcess/Plugins/PluginProcessProxy.cpp 2014-03-01 09:01:58 UTC (rev 164914)
+++ trunk/Source/WebKit2/UIProcess/Plugins/PluginProcessProxy.cpp 2014-03-01 09:08:04 UTC (rev 164915)
@@ -188,7 +188,7 @@
}
m_connection = IPC::Connection::createServerConnection(connectionIdentifier, this, RunLoop::main());
-#if OS(DARWIN)
+#if PLATFORM(MAC)
m_connection->setShouldCloseConnectionOnMachExceptions();
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes