Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Unified Diff: webkit/plugins/ppapi/mock_plugin_delegate.h

Issue 9669038: Added out-of-process support for server sockets. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed codereview issues, sync. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/plugins/ppapi/mock_plugin_delegate.h
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.h b/webkit/plugins/ppapi/mock_plugin_delegate.h
index 95fbafe17cceb6171de94b63109d889b64f7ef49..784438313fe995219f90e16767af3e6194269ea7 100644
--- a/webkit/plugins/ppapi/mock_plugin_delegate.h
+++ b/webkit/plugins/ppapi/mock_plugin_delegate.h
@@ -135,13 +135,12 @@ class MockPluginDelegate : public PluginDelegate {
const std::string& buffer,
const PP_NetAddress_Private& addr);
virtual void UDPSocketClose(uint32 socket_id);
- virtual void TCPServerSocketListen(PPB_TCPServerSocket_Private_Impl* socket,
- uint32 temp_socket_id,
+ virtual void TCPServerSocketListen(PP_Resource socket_resource,
const PP_NetAddress_Private& addr,
int32_t backlog);
- virtual void TCPServerSocketAccept(uint32 real_socket_id);
- virtual void TCPServerSocketStopListening(uint32 real_socket_id,
- uint32 temp_socket_id);
+ virtual void TCPServerSocketAccept(uint32 server_socket_id);
+ virtual void TCPServerSocketStopListening(PP_Resource socket_resource,
+ uint32 socket_id);
// Add/remove a network list observer.
virtual bool AddNetworkListObserver(

Powered by Google App Engine
This is Rietveld 408576698