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

Unified Diff: content/browser/renderer_host/render_process_host_impl.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: content/browser/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index 1b15a1f12d054b7b3ef05ead9c855dbbabdb8d11..17fa6c7a1b5bbb93fc74bd57875041e061f577ce 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -1437,8 +1437,8 @@ mojom::RouteProvider* RenderProcessHostImpl::GetRemoteRouteProvider() {
void RenderProcessHostImpl::AddRoute(int32_t routing_id,
IPC::Listener* listener) {
- CHECK(!listeners_.Lookup(routing_id)) << "Found Routing ID Conflict: "
- << routing_id;
+ // Found Routing ID Conflict.
+ CHECK(!listeners_.Lookup(routing_id));
listeners_.AddWithID(listener, routing_id);
}

Powered by Google App Engine
This is Rietveld 408576698