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

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

Issue 11761025: When launching PNaCl helper nexes, explicitly disable IRT loading. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 12 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
diff --git a/ppapi/native_client/src/trusted/plugin/service_runtime.cc b/ppapi/native_client/src/trusted/plugin/service_runtime.cc
index c5b9f7e04ad774919fb4997d71f1c9579a853c66..201e66c73999ec9d3308a539ef2bad2ab8c2946b 100644
--- a/ppapi/native_client/src/trusted/plugin/service_runtime.cc
+++ b/ppapi/native_client/src/trusted/plugin/service_runtime.cc
@@ -714,6 +714,7 @@ bool ServiceRuntime::Start(nacl::DescWrapper* nacl_desc,
const nacl::string& url,
bool uses_ppapi,
bool enable_ppapi_dev,
+ bool uses_irt,
pp::CompletionCallback crash_cb) {
PLUGIN_PRINTF(("ServiceRuntime::Start (nacl_desc=%p)\n",
reinterpret_cast<void*>(nacl_desc)));
@@ -729,7 +730,8 @@ bool ServiceRuntime::Start(nacl::DescWrapper* nacl_desc,
bool started = tmp_subprocess->Start(plugin_->pp_instance(),
url.c_str(),
uses_ppapi,
- enable_ppapi_dev);
+ enable_ppapi_dev,
+ uses_irt);
if (!started) {
PLUGIN_PRINTF(("ServiceRuntime::Start (start failed)\n"));
error_info->SetReport(ERROR_SEL_LDR_LAUNCH,

Powered by Google App Engine
This is Rietveld 408576698