| Index: chrome/browser/zygote_host_linux.cc
|
| diff --git a/chrome/browser/zygote_host_linux.cc b/chrome/browser/zygote_host_linux.cc
|
| index 00d082c887e457a7121c2a6ae1c53c9f2f7c428b..7e78bab27fd4958e31f7a3e9eaca36be6e768ddd 100644
|
| --- a/chrome/browser/zygote_host_linux.cc
|
| +++ b/chrome/browser/zygote_host_linux.cc
|
| @@ -87,13 +87,13 @@ void ZygoteHost::Init(const std::string& sandbox_cmd) {
|
| }
|
| if (browser_command_line.HasSwitch(switches::kLoggingLevel)) {
|
| cmd_line.AppendSwitchWithValue(switches::kLoggingLevel,
|
| - browser_command_line.GetSwitchValue(
|
| + browser_command_line.GetSwitchValueASCII(
|
| switches::kLoggingLevel));
|
| }
|
| if (browser_command_line.HasSwitch(switches::kEnableLogging)) {
|
| // Append with value to support --enable-logging=stderr.
|
| cmd_line.AppendSwitchWithValue(switches::kEnableLogging,
|
| - browser_command_line.GetSwitchValue(
|
| + browser_command_line.GetSwitchValueASCII(
|
| switches::kEnableLogging));
|
| }
|
| if (browser_command_line.HasSwitch(switches::kEnableSeccompSandbox)) {
|
|
|