| Index: src/shared/ppapi_proxy/ppb_rpc_client.cc
|
| diff --git a/src/shared/ppapi_proxy/ppb_rpc_client.cc b/src/shared/ppapi_proxy/ppb_rpc_client.cc
|
| index aa1c73985f4f6853cc71273c43c2baa91238d51d..048ca6a02cab6668d3fbd9fb04bcc7fc7900092a 100644
|
| --- a/src/shared/ppapi_proxy/ppb_rpc_client.cc
|
| +++ b/src/shared/ppapi_proxy/ppb_rpc_client.cc
|
| @@ -1075,6 +1075,38 @@ NaClSrpcError PpbImageDataRpcClient::PPB_ImageData_Describe(
|
| return retval;
|
| }
|
|
|
| +NaClSrpcError PpbInputEventRpcClient::PPB_InputEvent_RequestInputEvents(
|
| + NaClSrpcChannel* channel,
|
| + PP_Instance instance,
|
| + int32_t event_classes,
|
| + int32_t filtered,
|
| + int32_t* success) {
|
| + NaClSrpcError retval;
|
| + retval = NaClSrpcInvokeBySignature(
|
| + channel,
|
| + "PPB_InputEvent_RequestInputEvents:iii:i",
|
| + instance,
|
| + event_classes,
|
| + filtered,
|
| + success
|
| + );
|
| + return retval;
|
| +}
|
| +
|
| +NaClSrpcError PpbInputEventRpcClient::PPB_InputEvent_ClearInputEventRequest(
|
| + NaClSrpcChannel* channel,
|
| + PP_Instance instance,
|
| + int32_t event_classes) {
|
| + NaClSrpcError retval;
|
| + retval = NaClSrpcInvokeBySignature(
|
| + channel,
|
| + "PPB_InputEvent_ClearInputEventRequest:ii:",
|
| + instance,
|
| + event_classes
|
| + );
|
| + return retval;
|
| +}
|
| +
|
| NaClSrpcError PpbInstanceRpcClient::PPB_Instance_BindGraphics(
|
| NaClSrpcChannel* channel,
|
| PP_Instance instance,
|
|
|