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

Unified Diff: ash/mus/app_list_presenter_mus.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: ash/mus/app_list_presenter_mus.cc
diff --git a/ash/mus/app_list_presenter_mus.cc b/ash/mus/app_list_presenter_mus.cc
index 9bb13fbf99566f98d53ea2570efc2e76cac3fbe8..61d22d16f4c86a2ff1a9cf36ac7f080f8b9faffc 100644
--- a/ash/mus/app_list_presenter_mus.cc
+++ b/ash/mus/app_list_presenter_mus.cc
@@ -54,8 +54,8 @@ void AppListPresenterMus::ConnectIfNeeded() {
return;
connector_->ConnectToInterface(content::mojom::kBrowserServiceName,
&presenter_);
- CHECK(HasConnection(&presenter_))
- << "Could not connect to app_list::mojom::AppListPresenter.";
+ // Could not connect to app_list::mojom::AppListPresenter.
+ CHECK(HasConnection(&presenter_));
}
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698