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

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

Issue 9296001: WebSocket Pepper API: Remove binary type handling interfaces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 11 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 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after
1355 static void PPB_WebSocket_GetReadyState( 1355 static void PPB_WebSocket_GetReadyState(
1356 NaClSrpcRpc* rpc, 1356 NaClSrpcRpc* rpc,
1357 NaClSrpcClosure* done, 1357 NaClSrpcClosure* done,
1358 PP_Resource ws, 1358 PP_Resource ws,
1359 int32_t* ready_state); 1359 int32_t* ready_state);
1360 static void PPB_WebSocket_GetURL( 1360 static void PPB_WebSocket_GetURL(
1361 NaClSrpcRpc* rpc, 1361 NaClSrpcRpc* rpc,
1362 NaClSrpcClosure* done, 1362 NaClSrpcClosure* done,
1363 PP_Resource ws, 1363 PP_Resource ws,
1364 nacl_abi_size_t* url_bytes, char* url); 1364 nacl_abi_size_t* url_bytes, char* url);
1365 static void PPB_WebSocket_SetBinaryType(
1366 NaClSrpcRpc* rpc,
1367 NaClSrpcClosure* done,
1368 PP_Resource ws,
1369 int32_t binary_type,
1370 int32_t* success);
1371 static void PPB_WebSocket_GetBinaryType(
1372 NaClSrpcRpc* rpc,
1373 NaClSrpcClosure* done,
1374 PP_Resource ws,
1375 int32_t* binary_type);
1376 1365
1377 private: 1366 private:
1378 PpbWebSocketRpcServer(); 1367 PpbWebSocketRpcServer();
1379 PpbWebSocketRpcServer(const PpbWebSocketRpcServer&); 1368 PpbWebSocketRpcServer(const PpbWebSocketRpcServer&);
1380 void operator=(const PpbWebSocketRpcServer); 1369 void operator=(const PpbWebSocketRpcServer);
1381 }; // class PpbWebSocketRpcServer 1370 }; // class PpbWebSocketRpcServer
1382 1371
1383 class PpbWidgetRpcServer { 1372 class PpbWidgetRpcServer {
1384 public: 1373 public:
1385 static void PPB_Widget_IsWidget( 1374 static void PPB_Widget_IsWidget(
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
1439 }; // class PpbZoomRpcServer 1428 }; // class PpbZoomRpcServer
1440 1429
1441 class PpbRpcs { 1430 class PpbRpcs {
1442 public: 1431 public:
1443 static NaClSrpcHandlerDesc srpc_methods[]; 1432 static NaClSrpcHandlerDesc srpc_methods[];
1444 }; // class PpbRpcs 1433 }; // class PpbRpcs
1445 1434
1446 1435
1447 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_ 1436 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_
1448 1437
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698