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

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

Issue 9235035: Add getter methods for sockaddr. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Fixing errors found by review system. 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);
740 752
741 private: 753 private:
742 PpbNetAddressPrivateRpcClient(); 754 PpbNetAddressPrivateRpcClient();
743 PpbNetAddressPrivateRpcClient(const PpbNetAddressPrivateRpcClient&); 755 PpbNetAddressPrivateRpcClient(const PpbNetAddressPrivateRpcClient&);
744 void operator=(const PpbNetAddressPrivateRpcClient); 756 void operator=(const PpbNetAddressPrivateRpcClient);
745 }; // class PpbNetAddressPrivateRpcClient 757 }; // class PpbNetAddressPrivateRpcClient
746 758
747 class PpbPdfRpcClient { 759 class PpbPdfRpcClient {
748 public: 760 public:
749 static NaClSrpcError PPB_PDF_GetLocalizedString( 761 static NaClSrpcError PPB_PDF_GetLocalizedString(
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
1247 PpbZoomRpcClient(); 1259 PpbZoomRpcClient();
1248 PpbZoomRpcClient(const PpbZoomRpcClient&); 1260 PpbZoomRpcClient(const PpbZoomRpcClient&);
1249 void operator=(const PpbZoomRpcClient); 1261 void operator=(const PpbZoomRpcClient);
1250 }; // class PpbZoomRpcClient 1262 }; // class PpbZoomRpcClient
1251 1263
1252 1264
1253 1265
1254 1266
1255 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_ 1267 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_
1256 1268
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698