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

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

Issue 2299223002: Compile under-invalidation checking in all builds (Closed)
Patch Set: Resolve conflict Created 4 years, 3 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
Index: third_party/WebKit/Source/platform/graphics/paint/ForeignLayerDisplayItem.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/ForeignLayerDisplayItem.cpp b/third_party/WebKit/Source/platform/graphics/paint/ForeignLayerDisplayItem.cpp
index 5a47632e84757b9515c1abba250ba22caf2a80cd..f7bf34d06241ede44e2c80868178140b351f4785 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/ForeignLayerDisplayItem.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/ForeignLayerDisplayItem.cpp
@@ -46,13 +46,11 @@ bool ForeignLayerDisplayItem::drawsContent() const
return true;
}
-#if ENABLE(ASSERT)
bool ForeignLayerDisplayItem::equals(const DisplayItem& other) const
{
return DisplayItem::equals(other)
&& m_layer == static_cast<const ForeignLayerDisplayItem&>(other).m_layer;
}
-#endif // ENABLE(ASSERT)
#ifndef NDEBUG
void ForeignLayerDisplayItem::dumpPropertiesAsDebugString(StringBuilder& stringBuilder) const

Powered by Google App Engine
This is Rietveld 408576698