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

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

Issue 9212047: Add GetBoundAddress to PPB_UDPSocket_Private (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: fix build error after rebase 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 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1121 NaClSrpcClosure* done, 1121 NaClSrpcClosure* done,
1122 PP_Resource resource_id, 1122 PP_Resource resource_id,
1123 int32_t* is_udp_socket_private); 1123 int32_t* is_udp_socket_private);
1124 static void PPB_UDPSocket_Private_Bind( 1124 static void PPB_UDPSocket_Private_Bind(
1125 NaClSrpcRpc* rpc, 1125 NaClSrpcRpc* rpc,
1126 NaClSrpcClosure* done, 1126 NaClSrpcClosure* done,
1127 PP_Resource udp_socket, 1127 PP_Resource udp_socket,
1128 nacl_abi_size_t addr_bytes, char* addr, 1128 nacl_abi_size_t addr_bytes, char* addr,
1129 int32_t callback_id, 1129 int32_t callback_id,
1130 int32_t* pp_error); 1130 int32_t* pp_error);
1131 static void PPB_UDPSocket_Private_GetBoundAddress(
1132 NaClSrpcRpc* rpc,
1133 NaClSrpcClosure* done,
1134 PP_Resource udp_socket,
1135 nacl_abi_size_t* addr_bytes, char* addr,
1136 int32_t* success);
1131 static void PPB_UDPSocket_Private_RecvFrom( 1137 static void PPB_UDPSocket_Private_RecvFrom(
1132 NaClSrpcRpc* rpc, 1138 NaClSrpcRpc* rpc,
1133 NaClSrpcClosure* done, 1139 NaClSrpcClosure* done,
1134 PP_Resource udp_socket, 1140 PP_Resource udp_socket,
1135 int32_t num_bytes, 1141 int32_t num_bytes,
1136 int32_t callback_id, 1142 int32_t callback_id,
1137 nacl_abi_size_t* buffer_bytes, char* buffer, 1143 nacl_abi_size_t* buffer_bytes, char* buffer,
1138 int32_t* pp_error_or_bytes); 1144 int32_t* pp_error_or_bytes);
1139 static void PPB_UDPSocket_Private_GetRecvFromAddress( 1145 static void PPB_UDPSocket_Private_GetRecvFromAddress(
1140 NaClSrpcRpc* rpc, 1146 NaClSrpcRpc* rpc,
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
1444 }; // class PpbZoomRpcServer 1450 }; // class PpbZoomRpcServer
1445 1451
1446 class PpbRpcs { 1452 class PpbRpcs {
1447 public: 1453 public:
1448 static NaClSrpcHandlerDesc srpc_methods[]; 1454 static NaClSrpcHandlerDesc srpc_methods[];
1449 }; // class PpbRpcs 1455 }; // class PpbRpcs
1450 1456
1451 1457
1452 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_ 1458 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_
1453 1459
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698