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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/untrusted/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 side-by-side diff with in-line comments
Download patch
Index: ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h
===================================================================
--- ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h (revision 114053)
+++ ppapi/native_client/src/shared/ppapi_proxy/untrusted/srpcgen/ppb_rpc.h (working copy)
@@ -890,6 +890,16 @@
NaClSrpcChannel* channel,
PP_Instance instance,
int32_t* live_object_count);
+ static NaClSrpcError PPB_Testing_SimulateInputEvent(
+ NaClSrpcChannel* channel,
+ PP_Instance instance,
+ PP_Resource input_event);
+ static NaClSrpcError PPB_Testing_ExecuteScript(
+ NaClSrpcChannel* channel,
+ PP_Instance instance,
+ nacl_abi_size_t script_bytes, char* script,
+ nacl_abi_size_t* result_bytes, char* result,
+ nacl_abi_size_t* exception_bytes, char* exception);
private:
PpbTestingRpcClient();

Powered by Google App Engine
This is Rietveld 408576698