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

Unified Diff: extensions/shell/browser/desktop_controller.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: extensions/shell/browser/desktop_controller.cc
diff --git a/extensions/shell/browser/desktop_controller.cc b/extensions/shell/browser/desktop_controller.cc
index 7bf6bc52c0832b550ff41528189acd683d376606..aa6b284a1001ccce139dfb45847689fe53a4f714 100644
--- a/extensions/shell/browser/desktop_controller.cc
+++ b/extensions/shell/browser/desktop_controller.cc
@@ -20,7 +20,8 @@ DesktopController* DesktopController::instance() {
}
DesktopController::DesktopController() {
- CHECK(!g_instance) << "DesktopController already exists";
+ // DesktopController already exists
+ CHECK(!g_instance);
g_instance = this;
}

Powered by Google App Engine
This is Rietveld 408576698