forked from WebKit/WebKit-http
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://bugs.webkit.org/show_bug.cgi?id=140057 Reviewed by Antti Koivisto. Use std::mutex instead of WTF::Mutex. Change a couple of pointers to references in the connection client. * DatabaseProcess/DatabaseProcess.cpp: (WebKit::DatabaseProcess::didClose): (WebKit::DatabaseProcess::didReceiveInvalidMessage): * DatabaseProcess/DatabaseProcess.h: * DatabaseProcess/DatabaseToWebProcessConnection.cpp: (WebKit::DatabaseToWebProcessConnection::didClose): (WebKit::DatabaseToWebProcessConnection::didReceiveInvalidMessage): * DatabaseProcess/DatabaseToWebProcessConnection.h: * NetworkProcess/NetworkConnectionToWebProcess.cpp: (WebKit::NetworkConnectionToWebProcess::didClose): (WebKit::NetworkConnectionToWebProcess::didReceiveInvalidMessage): * NetworkProcess/NetworkConnectionToWebProcess.h: * NetworkProcess/NetworkProcess.cpp: (WebKit::NetworkProcess::didClose): (WebKit::NetworkProcess::didReceiveInvalidMessage): * NetworkProcess/NetworkProcess.h: * Platform/IPC/Connection.cpp: (IPC::Connection::sendMessage): (IPC::Connection::waitForMessage): (IPC::Connection::connectionDidClose): (IPC::Connection::sendOutgoingMessages): (IPC::Connection::dispatchDidReceiveInvalidMessage): (IPC::Connection::enqueueIncomingMessage): (IPC::Connection::dispatchMessage): (IPC::Connection::dispatchOneMessage): * Platform/IPC/Connection.h: * PluginProcess/PluginProcess.cpp: (WebKit::PluginProcess::didClose): (WebKit::PluginProcess::didReceiveInvalidMessage): * PluginProcess/PluginProcess.h: * PluginProcess/WebProcessConnection.cpp: (WebKit::WebProcessConnection::didClose): (WebKit::WebProcessConnection::didReceiveInvalidMessage): * PluginProcess/WebProcessConnection.h: * UIProcess/Databases/DatabaseProcessProxy.cpp: (WebKit::DatabaseProcessProxy::didClose): (WebKit::DatabaseProcessProxy::didReceiveInvalidMessage): * UIProcess/Databases/DatabaseProcessProxy.h: * UIProcess/Network/NetworkProcessProxy.cpp: (WebKit::NetworkProcessProxy::didClose): (WebKit::NetworkProcessProxy::didReceiveInvalidMessage): * UIProcess/Network/NetworkProcessProxy.h: * UIProcess/Plugins/PluginProcessProxy.cpp: (WebKit::PluginProcessProxy::didClose): (WebKit::PluginProcessProxy::didReceiveInvalidMessage): * UIProcess/Plugins/PluginProcessProxy.h: * UIProcess/WebProcessProxy.cpp: (WebKit::WebProcessProxy::didClose): (WebKit::WebProcessProxy::didReceiveInvalidMessage): * UIProcess/WebProcessProxy.h: * WebProcess/Databases/WebToDatabaseProcessConnection.cpp: (WebKit::WebToDatabaseProcessConnection::didClose): (WebKit::WebToDatabaseProcessConnection::didReceiveInvalidMessage): * WebProcess/Databases/WebToDatabaseProcessConnection.h: * WebProcess/Network/NetworkProcessConnection.cpp: (WebKit::NetworkProcessConnection::didClose): (WebKit::NetworkProcessConnection::didReceiveInvalidMessage): * WebProcess/Network/NetworkProcessConnection.h: * WebProcess/Plugins/PluginProcessConnection.cpp: (WebKit::PluginProcessConnection::didClose): (WebKit::PluginProcessConnection::didReceiveInvalidMessage): * WebProcess/Plugins/PluginProcessConnection.h: * WebProcess/WebPage/WebInspector.h: * WebProcess/WebPage/WebInspectorUI.h: * WebProcess/WebProcess.cpp: (WebKit::WebProcess::didClose): (WebKit::WebProcess::didReceiveInvalidMessage): * WebProcess/WebProcess.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@177875 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
1 parent
69f40e2
commit 30e768b
Showing
33 changed files
with
151 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,81 @@ | ||
2015-01-04 Anders Carlsson <[email protected]> | ||
|
||
Clean up some of the IPC code | ||
https://bugs.webkit.org/show_bug.cgi?id=140057 | ||
|
||
Reviewed by Antti Koivisto. | ||
|
||
Use std::mutex instead of WTF::Mutex. Change a couple of pointers to references in the connection client. | ||
|
||
* DatabaseProcess/DatabaseProcess.cpp: | ||
(WebKit::DatabaseProcess::didClose): | ||
(WebKit::DatabaseProcess::didReceiveInvalidMessage): | ||
* DatabaseProcess/DatabaseProcess.h: | ||
* DatabaseProcess/DatabaseToWebProcessConnection.cpp: | ||
(WebKit::DatabaseToWebProcessConnection::didClose): | ||
(WebKit::DatabaseToWebProcessConnection::didReceiveInvalidMessage): | ||
* DatabaseProcess/DatabaseToWebProcessConnection.h: | ||
* NetworkProcess/NetworkConnectionToWebProcess.cpp: | ||
(WebKit::NetworkConnectionToWebProcess::didClose): | ||
(WebKit::NetworkConnectionToWebProcess::didReceiveInvalidMessage): | ||
* NetworkProcess/NetworkConnectionToWebProcess.h: | ||
* NetworkProcess/NetworkProcess.cpp: | ||
(WebKit::NetworkProcess::didClose): | ||
(WebKit::NetworkProcess::didReceiveInvalidMessage): | ||
* NetworkProcess/NetworkProcess.h: | ||
* Platform/IPC/Connection.cpp: | ||
(IPC::Connection::sendMessage): | ||
(IPC::Connection::waitForMessage): | ||
(IPC::Connection::connectionDidClose): | ||
(IPC::Connection::sendOutgoingMessages): | ||
(IPC::Connection::dispatchDidReceiveInvalidMessage): | ||
(IPC::Connection::enqueueIncomingMessage): | ||
(IPC::Connection::dispatchMessage): | ||
(IPC::Connection::dispatchOneMessage): | ||
* Platform/IPC/Connection.h: | ||
* PluginProcess/PluginProcess.cpp: | ||
(WebKit::PluginProcess::didClose): | ||
(WebKit::PluginProcess::didReceiveInvalidMessage): | ||
* PluginProcess/PluginProcess.h: | ||
* PluginProcess/WebProcessConnection.cpp: | ||
(WebKit::WebProcessConnection::didClose): | ||
(WebKit::WebProcessConnection::didReceiveInvalidMessage): | ||
* PluginProcess/WebProcessConnection.h: | ||
* UIProcess/Databases/DatabaseProcessProxy.cpp: | ||
(WebKit::DatabaseProcessProxy::didClose): | ||
(WebKit::DatabaseProcessProxy::didReceiveInvalidMessage): | ||
* UIProcess/Databases/DatabaseProcessProxy.h: | ||
* UIProcess/Network/NetworkProcessProxy.cpp: | ||
(WebKit::NetworkProcessProxy::didClose): | ||
(WebKit::NetworkProcessProxy::didReceiveInvalidMessage): | ||
* UIProcess/Network/NetworkProcessProxy.h: | ||
* UIProcess/Plugins/PluginProcessProxy.cpp: | ||
(WebKit::PluginProcessProxy::didClose): | ||
(WebKit::PluginProcessProxy::didReceiveInvalidMessage): | ||
* UIProcess/Plugins/PluginProcessProxy.h: | ||
* UIProcess/WebProcessProxy.cpp: | ||
(WebKit::WebProcessProxy::didClose): | ||
(WebKit::WebProcessProxy::didReceiveInvalidMessage): | ||
* UIProcess/WebProcessProxy.h: | ||
* WebProcess/Databases/WebToDatabaseProcessConnection.cpp: | ||
(WebKit::WebToDatabaseProcessConnection::didClose): | ||
(WebKit::WebToDatabaseProcessConnection::didReceiveInvalidMessage): | ||
* WebProcess/Databases/WebToDatabaseProcessConnection.h: | ||
* WebProcess/Network/NetworkProcessConnection.cpp: | ||
(WebKit::NetworkProcessConnection::didClose): | ||
(WebKit::NetworkProcessConnection::didReceiveInvalidMessage): | ||
* WebProcess/Network/NetworkProcessConnection.h: | ||
* WebProcess/Plugins/PluginProcessConnection.cpp: | ||
(WebKit::PluginProcessConnection::didClose): | ||
(WebKit::PluginProcessConnection::didReceiveInvalidMessage): | ||
* WebProcess/Plugins/PluginProcessConnection.h: | ||
* WebProcess/WebPage/WebInspector.h: | ||
* WebProcess/WebPage/WebInspectorUI.h: | ||
* WebProcess/WebProcess.cpp: | ||
(WebKit::WebProcess::didClose): | ||
(WebKit::WebProcess::didReceiveInvalidMessage): | ||
* WebProcess/WebProcess.h: | ||
|
||
2015-01-01 Sam Weinig <[email protected]> | ||
|
||
Remove GroupSettings | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.