| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index cae028f6ab8e0e9cc5bfc8d5b5573372b5c32aaa..6ebe89e8b1463c1c3341a503e3bd9283b71c62ad 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -220,8 +220,8 @@ namespace {
|
| void SetupSandbox(const base::CommandLine& parsed_command_line) {
|
| TRACE_EVENT0("startup", "SetupSandbox");
|
| if (parsed_command_line.HasSwitch(switches::kNoZygote)) {
|
| - CHECK(parsed_command_line.HasSwitch(switches::kNoSandbox))
|
| - << "--no-sandbox should be used together with --no--zygote";
|
| + // --no-sandbox should be used together with --no--zygote
|
| + CHECK(parsed_command_line.HasSwitch(switches::kNoSandbox));
|
| return;
|
| }
|
|
|
|
|