Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: content/browser/browser_main_loop.cc

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698