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

Unified Diff: ppapi/shared_impl/private/ppb_tcp_server_socket_shared.h

Issue 9669038: Added out-of-process support for server sockets. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: 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: 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_;

Powered by Google App Engine
This is Rietveld 408576698