| Index: chrome/common/launchd_mac.mm
|
| diff --git a/chrome/common/launchd_mac.mm b/chrome/common/launchd_mac.mm
|
| index c67ff23abd6662b24302f4f49706fa4aa879c03b..935bfdeb68415b86fb854a6255f55a777cdf898c 100644
|
| --- a/chrome/common/launchd_mac.mm
|
| +++ b/chrome/common/launchd_mac.mm
|
| @@ -129,12 +129,10 @@ bool Launchd::RestartJob(Domain domain,
|
| [ns_session_type UTF8String], file_path,
|
| [ns_session_type UTF8String], file_path);
|
| argv.push_back(command);
|
| - base::ProcessHandle handle;
|
| - return base::LaunchAppInNewProcessGroup(argv,
|
| - base::environment_vector(),
|
| - base::file_handle_mapping_vector(),
|
| - NO,
|
| - &handle);
|
| +
|
| + base::LaunchOptions options;
|
| + options.new_process_group = true;
|
| + return base::LaunchApp(argv, options);
|
| }
|
|
|
| CFMutableDictionaryRef Launchd::CreatePlistFromFile(Domain domain,
|
|
|