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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/trusted/srpcgen/ppb_rpc.h

Issue 9808028: NaCl proxy for PPB_NetAddress_Private_1_1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/native_client/src/shared/ppapi_proxy/trusted/srpcgen/ppb_rpc.h
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/trusted/srpcgen/ppb_rpc.h b/ppapi/native_client/src/shared/ppapi_proxy/trusted/srpcgen/ppb_rpc.h
index 7731ded208f3f95c0f260ccf96cd3c7cd30b037b..863f9077989386293c5076bd187eaf280eb93032 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/trusted/srpcgen/ppb_rpc.h
+++ b/ppapi/native_client/src/shared/ppapi_proxy/trusted/srpcgen/ppb_rpc.h
@@ -914,6 +914,24 @@ class PpbNetAddressPrivateRpcServer {
nacl_abi_size_t addr_bytes, char* addr,
nacl_abi_size_t* address_bytes, char* address,
int32_t* success);
+ static void PPB_NetAddress_Private_GetScopeID(
+ NaClSrpcRpc* rpc,
+ NaClSrpcClosure* done,
+ nacl_abi_size_t addr_bytes, char* addr,
+ int32_t* scope_id);
+ static void PPB_NetAddress_Private_CreateFromIPv4Address(
+ NaClSrpcRpc* rpc,
+ NaClSrpcClosure* done,
+ nacl_abi_size_t ip_bytes, char* ip,
+ int32_t port,
+ nacl_abi_size_t* addr_bytes, char* addr);
+ static void PPB_NetAddress_Private_CreateFromIPv6Address(
+ NaClSrpcRpc* rpc,
+ NaClSrpcClosure* done,
+ nacl_abi_size_t ip_bytes, char* ip,
+ int32_t scope_id,
+ int32_t port,
+ nacl_abi_size_t* addr_bytes, char* addr);
private:
PpbNetAddressPrivateRpcServer();

Powered by Google App Engine
This is Rietveld 408576698