Index: ppapi/native_client/src/shared/ppapi_proxy/ppb_rpc_client.cc |
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/ppb_rpc_client.cc b/ppapi/native_client/src/shared/ppapi_proxy/ppb_rpc_client.cc |
index c869403721f291375a3f83871fc6c1ced6287f56..82c8247131245ab75f94225b6643ceaa2bf45a59 100644 |
--- a/ppapi/native_client/src/shared/ppapi_proxy/ppb_rpc_client.cc |
+++ b/ppapi/native_client/src/shared/ppapi_proxy/ppb_rpc_client.cc |
@@ -3642,17 +3642,19 @@ NaClSrpcError PpbWebSocketRpcClient::PPB_WebSocket_ReceiveMessage( |
NaClSrpcChannel* channel, |
PP_Resource ws, |
int32_t callback_id, |
- int32_t* pp_error) { |
+ int32_t* pp_error, |
+ nacl_abi_size_t* sync_read_buffer_bytes, char* sync_read_buffer) { |
VCHECK(ppapi_proxy::PPBCoreInterface()->IsMainThread(), |
("%s: PPAPI calls are not supported off the main thread\n", |
__FUNCTION__)); |
NaClSrpcError retval; |
retval = NaClSrpcInvokeBySignature( |
channel, |
- "PPB_WebSocket_ReceiveMessage:ii:i", |
+ "PPB_WebSocket_ReceiveMessage:ii:iC", |
ws, |
callback_id, |
- pp_error |
+ pp_error, |
+ sync_read_buffer_bytes, sync_read_buffer |
); |
return retval; |
} |