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

Unified Diff: chrome/browser/chromeos/first_run/goodies_displayer.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: chrome/browser/chromeos/first_run/goodies_displayer.cc
diff --git a/chrome/browser/chromeos/first_run/goodies_displayer.cc b/chrome/browser/chromeos/first_run/goodies_displayer.cc
index 7a6449f7e9039a7c98f31b0ee4ba6f22e444b6e0..0c9af2abd0b60dde7e4697093c35e762996eb52a 100644
--- a/chrome/browser/chromeos/first_run/goodies_displayer.cc
+++ b/chrome/browser/chromeos/first_run/goodies_displayer.cc
@@ -93,7 +93,8 @@ bool GoodiesDisplayer::Init() {
// static
void GoodiesDisplayer::InitForTesting(GoodiesDisplayerTestInfo* test_info) {
- CHECK(!g_test_info) << "GoodiesDisplayer::InitForTesting called twice";
+ // GoodiesDisplayer::InitForTesting called twice
+ CHECK(!g_test_info);
g_test_info = test_info;
test_info->setup_complete = !Init();
}

Powered by Google App Engine
This is Rietveld 408576698