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

Unified Diff: content/browser/ppapi_plugin_process_host.cc

Issue 2365273004: Initial implementation for sharing field trial state (win) (Closed)
Patch Set: add feature logic for sharing field trials 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 f4f9f124d1662516aa8532218cfc719cdef35f8d..e6400923c14b3ec7ad2970b14f662f09adfbed65 100644
--- a/content/browser/ppapi_plugin_process_host.cc
+++ b/content/browser/ppapi_plugin_process_host.cc
@@ -455,12 +455,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