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

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

Issue 2007363002: Enable CHECK_DISPLAY_ITEM_CLIENT_ALIVENESS temporarily for debugging crbug.com/609218 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months 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
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 5e0a79b9bd1cfacd47234c1b3748a1558d8a31cf..00d342e8b0354c6930db06ab078b48e8708a867a 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.cpp
@@ -44,8 +44,10 @@ void DisplayItemClient::beginShouldKeepAlive() const
CHECK(isAlive());
if (!displayItemClientsShouldKeepAlive)
displayItemClientsShouldKeepAlive = new HashMap<const DisplayItemClient*, String>();
+#ifdef NDEBUG
+ displayItemClientsShouldKeepAlive->add(this, "");
+#else
auto addResult = displayItemClientsShouldKeepAlive->add(this, "");
-#ifndef NDEBUG
if (addResult.isNewEntry)
addResult.storedValue->value = debugName();
#endif
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/paint/DisplayItemClient.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698