diff options
Diffstat (limited to 'chrome/browser/utility_process_host.cc')
-rw-r--r-- | chrome/browser/utility_process_host.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/browser/utility_process_host.cc b/chrome/browser/utility_process_host.cc index 0ba763b..af35c36 100644 --- a/chrome/browser/utility_process_host.cc +++ b/chrome/browser/utility_process_host.cc @@ -97,6 +97,11 @@ bool UtilityProcessHost::StartProcess(const FilePath& exposed_dir) { SetCrashReporterCommandLine(&cmd_line); + const CommandLine& browser_command_line = *CommandLine::ForCurrentProcess(); + if (browser_command_line.HasSwitch(switches::kChromeFrame)) { + cmd_line.AppendSwitch(switches::kChromeFrame); + } + base::ProcessHandle process; #if defined(OS_WIN) if (!UseSandbox()) { @@ -110,7 +115,6 @@ bool UtilityProcessHost::StartProcess(const FilePath& exposed_dir) { #else // TODO(port): Sandbox this on Linux/Mac. Also, zygote this to work with // Linux updating. - const CommandLine& browser_command_line = *CommandLine::ForCurrentProcess(); bool has_cmd_prefix = browser_command_line.HasSwitch( switches::kUtilityCmdPrefix); if (has_cmd_prefix) { |