| 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;
|
| }
|
|
|
|
|