| 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);
|
|
|