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

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

Issue 8920005: Add TestingInstance::EvalScript method which posts a message that the test page can eval(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after
1016 PP_Instance instance); 1016 PP_Instance instance);
1017 static void PPB_Testing_QuitMessageLoop( 1017 static void PPB_Testing_QuitMessageLoop(
1018 NaClSrpcRpc* rpc, 1018 NaClSrpcRpc* rpc,
1019 NaClSrpcClosure* done, 1019 NaClSrpcClosure* done,
1020 PP_Instance instance); 1020 PP_Instance instance);
1021 static void PPB_Testing_GetLiveObjectsForInstance( 1021 static void PPB_Testing_GetLiveObjectsForInstance(
1022 NaClSrpcRpc* rpc, 1022 NaClSrpcRpc* rpc,
1023 NaClSrpcClosure* done, 1023 NaClSrpcClosure* done,
1024 PP_Instance instance, 1024 PP_Instance instance,
1025 int32_t* live_object_count); 1025 int32_t* live_object_count);
1026 static void PPB_Testing_SimulateInputEvent(
1027 NaClSrpcRpc* rpc,
1028 NaClSrpcClosure* done,
1029 PP_Instance instance,
1030 PP_Resource input_event);
1031 static void PPB_Testing_ExecuteScript(
1032 NaClSrpcRpc* rpc,
1033 NaClSrpcClosure* done,
1034 PP_Instance instance,
1035 nacl_abi_size_t script_bytes, char* script,
1036 nacl_abi_size_t* result_bytes, char* result,
1037 nacl_abi_size_t* exception_bytes, char* exception);
1026 1038
1027 private: 1039 private:
1028 PpbTestingRpcServer(); 1040 PpbTestingRpcServer();
1029 PpbTestingRpcServer(const PpbTestingRpcServer&); 1041 PpbTestingRpcServer(const PpbTestingRpcServer&);
1030 void operator=(const PpbTestingRpcServer); 1042 void operator=(const PpbTestingRpcServer);
1031 }; // class PpbTestingRpcServer 1043 }; // class PpbTestingRpcServer
1032 1044
1033 class PpbUDPSocketPrivateRpcServer { 1045 class PpbUDPSocketPrivateRpcServer {
1034 public: 1046 public:
1035 static void PPB_UDPSocket_Private_Create( 1047 static void PPB_UDPSocket_Private_Create(
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
1277 }; // class PpbZoomRpcServer 1289 }; // class PpbZoomRpcServer
1278 1290
1279 class PpbRpcs { 1291 class PpbRpcs {
1280 public: 1292 public:
1281 static NaClSrpcHandlerDesc srpc_methods[]; 1293 static NaClSrpcHandlerDesc srpc_methods[];
1282 }; // class PpbRpcs 1294 }; // class PpbRpcs
1283 1295
1284 1296
1285 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_ 1297 #endif // GEN_PPAPI_PROXY_PPB_RPC_H_
1286 1298
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698