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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/CompositingDisplayItem.h

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/CompositingDisplayItem.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/CompositingDisplayItem.h b/third_party/WebKit/Source/platform/graphics/paint/CompositingDisplayItem.h
index 507707de84ec5fc902d686e81cdef2dca894cc6a..73bed6196a0cce803fed6f84034b86efbb0b25ea 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/CompositingDisplayItem.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/CompositingDisplayItem.h
@@ -35,7 +35,6 @@ private:
#ifndef NDEBUG
void dumpPropertiesAsDebugString(WTF::StringBuilder&) const override;
#endif
-#if ENABLE(ASSERT)
bool equals(const DisplayItem& other) const final
{
return DisplayItem::equals(other)
@@ -45,7 +44,6 @@ private:
&& m_bounds == static_cast<const BeginCompositingDisplayItem&>(other).m_bounds
&& m_colorFilter == static_cast<const BeginCompositingDisplayItem&>(other).m_colorFilter;
}
-#endif
const SkXfermode::Mode m_xferMode;
const float m_opacity;

Powered by Google App Engine
This is Rietveld 408576698