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

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

Issue 9802027: WebSocket Pepper API: synchronous completion support (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add large data over 64KB to stressed test Created 8 years, 8 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
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 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
1252 NaClSrpcChannel* channel, 1252 NaClSrpcChannel* channel,
1253 PP_Resource ws, 1253 PP_Resource ws,
1254 int32_t code, 1254 int32_t code,
1255 nacl_abi_size_t reason_bytes, char* reason, 1255 nacl_abi_size_t reason_bytes, char* reason,
1256 int32_t callback_id, 1256 int32_t callback_id,
1257 int32_t* pp_error); 1257 int32_t* pp_error);
1258 static NaClSrpcError PPB_WebSocket_ReceiveMessage( 1258 static NaClSrpcError PPB_WebSocket_ReceiveMessage(
1259 NaClSrpcChannel* channel, 1259 NaClSrpcChannel* channel,
1260 PP_Resource ws, 1260 PP_Resource ws,
1261 int32_t callback_id, 1261 int32_t callback_id,
1262 int32_t* pp_error); 1262 int32_t* pp_error,
1263 nacl_abi_size_t* sync_read_buffer_bytes, char* sync_read_buffer);
1263 static NaClSrpcError PPB_WebSocket_SendMessage( 1264 static NaClSrpcError PPB_WebSocket_SendMessage(
1264 NaClSrpcChannel* channel, 1265 NaClSrpcChannel* channel,
1265 PP_Resource ws, 1266 PP_Resource ws,
1266 nacl_abi_size_t message_bytes, char* message, 1267 nacl_abi_size_t message_bytes, char* message,
1267 int32_t* pp_error); 1268 int32_t* pp_error);
1268 static NaClSrpcError PPB_WebSocket_GetBufferedAmount( 1269 static NaClSrpcError PPB_WebSocket_GetBufferedAmount(
1269 NaClSrpcChannel* channel, 1270 NaClSrpcChannel* channel,
1270 PP_Resource ws, 1271 PP_Resource ws,
1271 int64_t* buffered_amount); 1272 int64_t* buffered_amount);
1272 static NaClSrpcError PPB_WebSocket_GetCloseCode( 1273 static NaClSrpcError PPB_WebSocket_GetCloseCode(
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
1353 PpbZoomRpcClient(); 1354 PpbZoomRpcClient();
1354 PpbZoomRpcClient(const PpbZoomRpcClient&); 1355 PpbZoomRpcClient(const PpbZoomRpcClient&);
1355 void operator=(const PpbZoomRpcClient); 1356 void operator=(const PpbZoomRpcClient);
1356 }; // class PpbZoomRpcClient 1357 }; // class PpbZoomRpcClient
1357 1358
1358 1359
1359 1360
1360 1361
1361 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_ 1362 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_
1362 1363
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698