Chromium Code Reviews| Index: ppapi/shared_impl/private/ppb_tcp_server_socket_shared.h |
| diff --git a/ppapi/shared_impl/private/ppb_tcp_server_socket_shared.h b/ppapi/shared_impl/private/ppb_tcp_server_socket_shared.h |
| index 15cbc03f74c457df551fcf3ea429c79fac68386f..f2332ce514398bcfa62f0197a57ec5c86dbae25b 100644 |
| --- a/ppapi/shared_impl/private/ppb_tcp_server_socket_shared.h |
| +++ b/ppapi/shared_impl/private/ppb_tcp_server_socket_shared.h |
| @@ -48,8 +48,7 @@ class PPAPI_SHARED_EXPORT PPB_TCPServerSocket_Shared |
| // Send functions that need to be implemented differently for the |
| // proxied and non-proxied derived classes. |
| - virtual void SendListen(uint32 temp_socket_id, |
| - const PP_NetAddress_Private& addr, |
| + virtual void SendListen(const PP_NetAddress_Private& addr, |
| int32_t backlog) = 0; |
| virtual void SendAccept() = 0; |
| virtual void SendStopListening() = 0; |
| @@ -65,10 +64,7 @@ class PPAPI_SHARED_EXPORT PPB_TCPServerSocket_Shared |
| CLOSED |
| }; |
| - static uint32 GenerateTempSocketID(); |
| - |
| uint32 real_socket_id_; |
|
yzshen1
2012/03/13 17:46:32
Please remove 'real'.
ygorshenin1
2012/03/14 11:36:18
Done.
|
| - uint32 temp_socket_id_; |
| State state_; |
| scoped_refptr<TrackedCallback> listen_callback_; |