| 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..8cfd9dcc65a272770cde58aecc57f40e8e9cb3a1 100644
|
| --- a/webkit/plugins/ppapi/mock_plugin_delegate.cc
|
| +++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc
|
| @@ -302,7 +302,7 @@ 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) {
|
| }
|
| @@ -310,8 +310,9 @@ void MockPluginDelegate::TCPServerSocketListen(
|
| void MockPluginDelegate::TCPServerSocketAccept(uint32 real_socket_id) {
|
| }
|
|
|
| -void MockPluginDelegate::TCPServerSocketStopListening(uint32 real_socket_id,
|
| - uint32 temp_socket_id) {
|
| +void MockPluginDelegate::TCPServerSocketStopListening(
|
| + PP_Resource socket_resource,
|
| + uint32 real_socket_id) {
|
| }
|
|
|
| bool MockPluginDelegate::AddNetworkListObserver(
|
|
|