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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h

Issue 9307115: PPB_NetAddress_Private: add getter methods for sockaddr. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 8 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING 5 // WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
6 // 6 //
7 // Automatically generated code. See srpcgen.py 7 // Automatically generated code. See srpcgen.py
8 // 8 //
9 // NaCl Simple Remote Procedure Call interface abstractions. 9 // NaCl Simple Remote Procedure Call interface abstractions.
10 10
(...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after
730 static NaClSrpcError PPB_NetAddress_Private_ReplacePort( 730 static NaClSrpcError PPB_NetAddress_Private_ReplacePort(
731 NaClSrpcChannel* channel, 731 NaClSrpcChannel* channel,
732 nacl_abi_size_t src_addr_bytes, char* src_addr, 732 nacl_abi_size_t src_addr_bytes, char* src_addr,
733 int32_t port, 733 int32_t port,
734 nacl_abi_size_t* dst_addr_bytes, char* dst_addr, 734 nacl_abi_size_t* dst_addr_bytes, char* dst_addr,
735 int32_t* success); 735 int32_t* success);
736 static NaClSrpcError PPB_NetAddress_Private_GetAnyAddress( 736 static NaClSrpcError PPB_NetAddress_Private_GetAnyAddress(
737 NaClSrpcChannel* channel, 737 NaClSrpcChannel* channel,
738 int32_t is_ipv6, 738 int32_t is_ipv6,
739 nacl_abi_size_t* addr_bytes, char* addr); 739 nacl_abi_size_t* addr_bytes, char* addr);
740 static NaClSrpcError PPB_NetAddress_Private_GetFamily(
741 NaClSrpcChannel* channel,
742 nacl_abi_size_t addr_bytes, char* addr,
743 int32_t* addr_family);
744 static NaClSrpcError PPB_NetAddress_Private_GetPort(
745 NaClSrpcChannel* channel,
746 nacl_abi_size_t addr_bytes, char* addr,
747 int32_t* port);
748 static NaClSrpcError PPB_NetAddress_Private_GetAddress(
749 NaClSrpcChannel* channel,
750 nacl_abi_size_t addr_bytes, char* addr,
751 nacl_abi_size_t* address_bytes, char* address,
752 int32_t* success);
740 753
741 private: 754 private:
742 PpbNetAddressPrivateRpcClient(); 755 PpbNetAddressPrivateRpcClient();
743 PpbNetAddressPrivateRpcClient(const PpbNetAddressPrivateRpcClient&); 756 PpbNetAddressPrivateRpcClient(const PpbNetAddressPrivateRpcClient&);
744 void operator=(const PpbNetAddressPrivateRpcClient); 757 void operator=(const PpbNetAddressPrivateRpcClient);
745 }; // class PpbNetAddressPrivateRpcClient 758 }; // class PpbNetAddressPrivateRpcClient
746 759
747 class PpbPdfRpcClient { 760 class PpbPdfRpcClient {
748 public: 761 public:
749 static NaClSrpcError PPB_PDF_GetLocalizedString( 762 static NaClSrpcError PPB_PDF_GetLocalizedString(
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 PpbZoomRpcClient(); 1251 PpbZoomRpcClient();
1239 PpbZoomRpcClient(const PpbZoomRpcClient&); 1252 PpbZoomRpcClient(const PpbZoomRpcClient&);
1240 void operator=(const PpbZoomRpcClient); 1253 void operator=(const PpbZoomRpcClient);
1241 }; // class PpbZoomRpcClient 1254 }; // class PpbZoomRpcClient
1242 1255
1243 1256
1244 1257
1245 1258
1246 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_ 1259 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_
1247 1260
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698