| Index: chrome/service/service_utility_process_host.cc
|
| diff --git a/chrome/service/service_utility_process_host.cc b/chrome/service/service_utility_process_host.cc
|
| index 1f30a7df369e25b14db15a6547b908ed5708b858..7bb80e22edd48f5f6392e04a49f3c6eec2c38f77 100644
|
| --- a/chrome/service/service_utility_process_host.cc
|
| +++ b/chrome/service/service_utility_process_host.cc
|
| @@ -233,9 +233,7 @@ bool ServiceUtilityProcessHost::Launch(base::CommandLine* cmd_line,
|
| bool no_sandbox) {
|
| if (no_sandbox) {
|
| cmd_line->AppendSwitch(switches::kNoSandbox);
|
| - base::ProcessHandle handle;
|
| - if (base::LaunchProcess(*cmd_line, base::LaunchOptions(), &handle))
|
| - process_ = base::Process(handle);
|
| + process_ = base::LaunchProcess(*cmd_line, base::LaunchOptions());
|
| } else {
|
| ServiceSandboxedProcessLauncherDelegate delegate;
|
| process_ = content::StartSandboxedProcess(&delegate, cmd_line);
|
|
|