diff options
Diffstat (limited to 'chrome/browser/zygote_host_linux.cc')
-rw-r--r-- | chrome/browser/zygote_host_linux.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/zygote_host_linux.cc b/chrome/browser/zygote_host_linux.cc index 983e2ce..5c58d6c 100644 --- a/chrome/browser/zygote_host_linux.cc +++ b/chrome/browser/zygote_host_linux.cc @@ -67,8 +67,7 @@ void ZygoteHost::Init(const std::string& sandbox_cmd) { CHECK(PathService::Get(base::FILE_EXE, &chrome_path)); CommandLine cmd_line(chrome_path); - cmd_line.AppendSwitchWithValue(switches::kProcessType, - switches::kZygoteProcess); + cmd_line.AppendSwitchASCII(switches::kProcessType, switches::kZygoteProcess); int fds[2]; CHECK(socketpair(PF_UNIX, SOCK_SEQPACKET, 0, fds) == 0); |