| Index: ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_testing_rpc_server.cc
|
| ===================================================================
|
| --- ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_testing_rpc_server.cc (revision 114869)
|
| +++ ppapi/native_client/src/shared/ppapi_proxy/browser_ppb_testing_rpc_server.cc (working copy)
|
| @@ -91,6 +91,21 @@
|
| rpc->result = NACL_SRPC_RESULT_OK;
|
| }
|
|
|
| +void PpbTestingRpcServer::PPB_Testing_SimulateInputEvent(
|
| + NaClSrpcRpc* rpc,
|
| + NaClSrpcClosure* done,
|
| + PP_Instance instance,
|
| + PP_Resource input_event) {
|
| + NaClSrpcClosureRunner runner(done);
|
| + rpc->result = NACL_SRPC_RESULT_APP_ERROR;
|
| +
|
| + PPBTestingInterface()->SimulateInputEvent(instance, input_event);
|
| +
|
| + DebugPrintf("PPB_Testing::SimulateInputEvent: instance=%"NACL_PRIu32"\n",
|
| + instance);
|
| + rpc->result = NACL_SRPC_RESULT_OK;
|
| +}
|
| +
|
| void PpbTestingRpcServer::PPB_Testing_GetDocumentURL(
|
| NaClSrpcRpc* rpc,
|
| NaClSrpcClosure* done,
|
|
|