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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_client.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_client.cc
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_client.cc b/ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_client.cc
index 636aee16f358f564608ec6e2340e6f52578feaef..15cf71d558edf13626dca6fff028f383dc880372 100644
--- a/ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_client.cc
+++ b/ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_client.cc
@@ -40,21 +40,17 @@ NaClSrpcError CompletionCallbackRpcClient::RunCompletionCallback(
NaClSrpcError PppRpcClient::PPP_InitializeModule(
NaClSrpcChannel* channel,
- int32_t pid,
PP_Module module,
NaClSrpcImcDescType upcall_channel_desc,
const char* service_description,
- int32_t* nacl_pid,
int32_t* success) {
NaClSrpcError retval;
retval = NaClSrpcInvokeBySignature(
channel,
- "PPP_InitializeModule:iihs:ii",
- pid,
+ "PPP_InitializeModule:ihs:i",
module,
upcall_channel_desc,
service_description,
- nacl_pid,
success
);
return retval;
« no previous file with comments | « ppapi/native_client/src/shared/ppapi_proxy/ppp.srpc ('k') | ppapi/native_client/src/shared/ppapi_proxy/ppp_rpc_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698