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

Unified Diff: chrome/browser/chromeos/options/cert_library.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/options/cert_library.cc
diff --git a/chrome/browser/chromeos/options/cert_library.cc b/chrome/browser/chromeos/options/cert_library.cc
index 00084f64e07166fe44c48033642dcd9084df14c0..ca4e42a4e9a514b7e97c2335583297d56dc56a0d 100644
--- a/chrome/browser/chromeos/options/cert_library.cc
+++ b/chrome/browser/chromeos/options/cert_library.cc
@@ -112,7 +112,8 @@ void CertLibrary::Shutdown() {
// static
CertLibrary* CertLibrary::Get() {
- CHECK(g_cert_library) << "CertLibrary::Get() called before Initialize()";
+ // CertLibrary::Get() called before Initialize()
+ CHECK(g_cert_library);
return g_cert_library;
}

Powered by Google App Engine
This is Rietveld 408576698