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

Unified Diff: src/shared/ppapi_proxy/ppp_rpc_client.cc

Issue 7395005: Proxy PPB_Input_Event, PPP_Input_Event, and associated IFs. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: copyright headers Created 9 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/shared/ppapi_proxy/ppp_input_event.srpc ('k') | src/shared/ppapi_proxy/ppp_rpc_server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/shared/ppapi_proxy/ppp_rpc_client.cc
diff --git a/src/shared/ppapi_proxy/ppp_rpc_client.cc b/src/shared/ppapi_proxy/ppp_rpc_client.cc
index a6eaaa007b23329b6d6ea77eebb95eda37ded156..5804568c3c2d3623c9c494c6c0b1eded2c0a50fe 100644
--- a/src/shared/ppapi_proxy/ppp_rpc_client.cc
+++ b/src/shared/ppapi_proxy/ppp_rpc_client.cc
@@ -145,6 +145,26 @@ NaClSrpcError PppFindRpcClient::PPP_Find_StopFind(
return retval;
}
+NaClSrpcError PppInputEventRpcClient::PPP_InputEvent_HandleInputEvent(
+ NaClSrpcChannel* channel,
+ PP_Instance instance,
+ PP_Resource resource,
+ nacl_abi_size_t event_data_bytes, char* event_data,
+ nacl_abi_size_t character_text_bytes, char* character_text,
+ int32_t* handled) {
+ NaClSrpcError retval;
+ retval = NaClSrpcInvokeBySignature(
+ channel,
+ "PPP_InputEvent_HandleInputEvent:iiCC:i",
+ instance,
+ resource,
+ event_data_bytes, event_data,
+ character_text_bytes, character_text,
+ handled
+ );
+ return retval;
+}
+
NaClSrpcError PppInstanceRpcClient::PPP_Instance_DidCreate(
NaClSrpcChannel* channel,
PP_Instance instance,
« no previous file with comments | « src/shared/ppapi_proxy/ppp_input_event.srpc ('k') | src/shared/ppapi_proxy/ppp_rpc_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698