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

Unified Diff: chrome/browser/profiles/profile_destroyer.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/profiles/profile_destroyer.cc
diff --git a/chrome/browser/profiles/profile_destroyer.cc b/chrome/browser/profiles/profile_destroyer.cc
index 1bfeb09735d5fbb6d803a0262a6c1c5e44677e33..75cd24d2b88f5d0a62239749b1c44f1c63c9d19f 100644
--- a/chrome/browser/profiles/profile_destroyer.cc
+++ b/chrome/browser/profiles/profile_destroyer.cc
@@ -127,8 +127,8 @@ ProfileDestroyer::~ProfileDestroyer() {
// Don't wait for pending registrations, if any, these hosts are buggy.
// Note: this can happen, but if so, it's better to crash here than wait
// for the host to dereference a deleted Profile. http://crbug.com/248625
- CHECK_EQ(0U, num_hosts_) << "Some render process hosts were not "
- << "destroyed early enough!";
+ // Some render process hosts were not destroyed early enough!
+ CHECK_EQ(0U, num_hosts_);
#endif // NDEBUG
DCHECK(pending_destroyers_ != NULL);
DestroyerSet::iterator iter = pending_destroyers_->find(this);

Powered by Google App Engine
This is Rietveld 408576698