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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_server.cc

Issue 9015040: NaCl: Remove getpid() calls from the PPAPI proxy (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright Created 8 years, 11 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
Index: ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_server.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_server.cc b/ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_server.cc
index 22e4806b49af4aeeedb848e402f85c78eb95b9de..e23bef110463dff986be74321daa748b2ed41447 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_server.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_server.cc
@@ -49,11 +49,9 @@ static void PPP_InitializeModuleDispatcher(
rpc,
done,
inputs[0]->u.ival,
- inputs[1]->u.ival,
- inputs[2]->u.hval,
- inputs[3]->arrays.str,
- &(outputs[0]->u.ival),
- &(outputs[1]->u.ival)
+ inputs[1]->u.hval,
+ inputs[2]->arrays.str,
+ &(outputs[0]->u.ival)
);
}
@@ -426,7 +424,7 @@ static void PPP_Zoom_ZoomDispatcher(
NaClSrpcHandlerDesc PppRpcs::srpc_methods[] = {
{ "RunCompletionCallback:iiC:", RunCompletionCallbackDispatcher },
- { "PPP_InitializeModule:iihs:ii", PPP_InitializeModuleDispatcher },
+ { "PPP_InitializeModule:ihs:i", PPP_InitializeModuleDispatcher },
{ "PPP_ShutdownModule::", PPP_ShutdownModuleDispatcher },
{ "PPP_GetInterface:s:i", PPP_GetInterfaceDispatcher },
{ "PPP_Audio_StreamCreated:ihih:", PPP_Audio_StreamCreatedDispatcher },

Powered by Google App Engine
This is Rietveld 408576698