| 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 51713efeb01f0f6e6015d2c77f6000a55a4e09a5..eeda996b007cff50852b39d4394c41bd6442cf57 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) {
|
| }
|
|
|
| void MockPluginDelegate::RegisterHostResolver(
|
|
|