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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/FilterDisplayItem.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/FilterDisplayItem.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/FilterDisplayItem.h b/third_party/WebKit/Source/platform/graphics/paint/FilterDisplayItem.h
index 0a2c6591e24c6245a9132b51856967e4161eaa0d..445ad79cf4ac16a3c9a2a26cc0bf92758bbf9b52 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/FilterDisplayItem.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/FilterDisplayItem.h
@@ -33,7 +33,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)
@@ -41,7 +40,6 @@ private:
&& m_bounds == static_cast<const BeginFilterDisplayItem&>(other).m_bounds
&& m_origin == static_cast<const BeginFilterDisplayItem&>(other).m_origin;
}
-#endif
// FIXME: m_imageFilter should be replaced with m_webFilterOperations when copying data to the compositor.
sk_sp<SkImageFilter> m_imageFilter;

Powered by Google App Engine
This is Rietveld 408576698