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

Unified Diff: content/browser/ppapi_plugin_process_host.cc

Issue 2365273004: Initial implementation for sharing field trial state (win) (Closed)
Patch Set: add missing include Created 4 years, 2 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: content/browser/ppapi_plugin_process_host.cc
diff --git a/content/browser/ppapi_plugin_process_host.cc b/content/browser/ppapi_plugin_process_host.cc
index 8669506147bbe5e33496efa8b3b04f8e1b7ff6c5..ae66ac4f26ef1eb75dae1eaeb3366b452ab77028 100644
--- a/content/browser/ppapi_plugin_process_host.cc
+++ b/content/browser/ppapi_plugin_process_host.cc
@@ -454,12 +454,9 @@ bool PpapiPluginProcessHost::Init(const PepperPluginInfo& info) {
// On posix, never use the zygote for the broker. Also, only use the zygote if
// we are not using a plugin launcher - having a plugin launcher means we need
// to use another process instead of just forking the zygote.
- process_->Launch(
- new PpapiPluginSandboxedProcessLauncherDelegate(is_broker_,
- info,
- process_->GetHost()),
- cmd_line,
- true);
+ process_->Launch(new PpapiPluginSandboxedProcessLauncherDelegate(
+ is_broker_, info, process_->GetHost()),
+ cmd_line, nullptr, true);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698