diff options
Diffstat (limited to 'chrome/browser/profile_import_process_host.cc')
-rw-r--r-- | chrome/browser/profile_import_process_host.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/profile_import_process_host.cc b/chrome/browser/profile_import_process_host.cc index eaeb6dc..1926204 100644 --- a/chrome/browser/profile_import_process_host.cc +++ b/chrome/browser/profile_import_process_host.cc @@ -85,9 +85,9 @@ bool ProfileImportProcessHost::StartProcess() { } CommandLine* cmd_line = new CommandLine(exe_path); - cmd_line->AppendSwitchWithValue(switches::kProcessType, - switches::kProfileImportProcess); - cmd_line->AppendSwitchWithValue(switches::kProcessChannelID, channel_id()); + cmd_line->AppendSwitchASCII(switches::kProcessType, + switches::kProfileImportProcess); + cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id()); SetCrashReporterCommandLine(cmd_line); |