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

Unified Diff: chrome/browser/signin/easy_unlock_service.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/signin/easy_unlock_service.cc
diff --git a/chrome/browser/signin/easy_unlock_service.cc b/chrome/browser/signin/easy_unlock_service.cc
index 1679d3601f249b51b9d9ec1545667904eaf09239..4c51ce1f54a231180859c6029b5a4991605bc206 100644
--- a/chrome/browser/signin/easy_unlock_service.cc
+++ b/chrome/browser/signin/easy_unlock_service.cc
@@ -526,9 +526,7 @@ void EasyUnlockService::AttemptAuth(const AccountId& account_id,
return;
}
- CHECK(GetAccountId() == account_id)
- << "Check failed: " << GetAccountId().Serialize() << " vs "
- << account_id.Serialize();
+ CHECK(GetAccountId() == account_id);
auth_attempt_.reset(new EasyUnlockAuthAttempt(app_manager_.get(), account_id,
auth_attempt_type, callback));

Powered by Google App Engine
This is Rietveld 408576698