Index: webkit/plugins/ppapi/mock_plugin_delegate.cc |
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.cc b/webkit/plugins/ppapi/mock_plugin_delegate.cc |
index 81a0690a8072e4ff32b543ff058dac34258dd023..c9c54294a91d536ad8051d348f86e1f896b89a4f 100644 |
--- a/webkit/plugins/ppapi/mock_plugin_delegate.cc |
+++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc |
@@ -301,17 +301,17 @@ void MockPluginDelegate::UDPSocketClose(uint32 socket_id) { |
} |
void MockPluginDelegate::TCPServerSocketListen( |
- PPB_TCPServerSocket_Private_Impl* socket, |
- uint32 temp_socket_id, |
+ PP_Resource socket_resource, |
const PP_NetAddress_Private& addr, |
int32_t backlog) { |
} |
-void MockPluginDelegate::TCPServerSocketAccept(uint32 real_socket_id) { |
+void MockPluginDelegate::TCPServerSocketAccept(uint32 server_socket_id) { |
} |
-void MockPluginDelegate::TCPServerSocketStopListening(uint32 real_socket_id, |
- uint32 temp_socket_id) { |
+void MockPluginDelegate::TCPServerSocketStopListening( |
+ PP_Resource socket_resource, |
+ uint32 socket_id) { |
} |
bool MockPluginDelegate::AddNetworkListObserver( |