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

Unified Diff: ppapi/native_client/src/trusted/plugin/service_runtime.cc

Issue 10214007: Add an IPC channel between the NaCl loader process and the renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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/trusted/plugin/service_runtime.cc
===================================================================
--- ppapi/native_client/src/trusted/plugin/service_runtime.cc (revision 133072)
+++ ppapi/native_client/src/trusted/plugin/service_runtime.cc (working copy)
@@ -635,7 +635,8 @@
"ServiceRuntime: failed to create sel_ldr launcher");
return false;
}
- if (!tmp_subprocess->Start(url.c_str())) {
+ PP_Instance instance = plugin_->pp_instance();
+ if (!tmp_subprocess->Start(instance, url.c_str())) {
PLUGIN_PRINTF(("ServiceRuntime::Start (start failed)\n"));
error_info->SetReport(ERROR_SEL_LDR_LAUNCH,
"ServiceRuntime: failed to start");

Powered by Google App Engine
This is Rietveld 408576698