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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp

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: third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp
index 7cb29a56d59b52c25cbddf460e7379d6cd910a90..c0e9408096437ec5bfeab68ed2f1165a92201c7a 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp
@@ -34,9 +34,8 @@ DisplayItemClient::DisplayItemClient() {
DisplayItemClient::~DisplayItemClient() {
if (displayItemClientsShouldKeepAlive) {
for (auto& item : *displayItemClientsShouldKeepAlive) {
- CHECK(!item.value.contains(this))
- << "Short-lived DisplayItemClient: " << item.value.get(this)
- << ". See crbug.com/609218.";
+ // Short-lived DisplayItemClient. See crbug.com/609218.
+ CHECK(!item.value.contains(this));
}
}
liveDisplayItemClients->remove(this);

Powered by Google App Engine
This is Rietveld 408576698