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

Unified Diff: content/renderer/render_thread_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/renderer/render_thread_impl.cc
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
index 2937490413873349d97b70120e9d0552e759d4aa..7c27e6f0227eca61641a95b7b53c7c32bbc2d3b8 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
@@ -1158,7 +1158,8 @@ void RenderThreadImpl::RegisterPendingFrameCreate(
routing_id,
make_scoped_refptr(new PendingFrameCreate(
routing_id, std::move(frame_request), std::move(frame_host)))));
- CHECK(result.second) << "Inserting a duplicate item.";
+ // Inserting a duplicate item.
+ CHECK(result.second);
}
mojom::StoragePartitionService* RenderThreadImpl::GetStoragePartitionService() {

Powered by Google App Engine
This is Rietveld 408576698