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

Unified Diff: Source/core/layout/LayoutObject.h

Issue 1355753008: RuntimeEnabledFeatures::slimmingPaintOffsetCaching (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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: Source/core/layout/LayoutObject.h
diff --git a/Source/core/layout/LayoutObject.h b/Source/core/layout/LayoutObject.h
index bf1a812f99b0cb266fc2a9dbb93595dd70ae508e..5be3d0db2781b113becb8e6ad2e003ad48b1ca3a 100644
--- a/Source/core/layout/LayoutObject.h
+++ b/Source/core/layout/LayoutObject.h
@@ -1129,12 +1129,12 @@ public:
// The previous position of the top-left corner of the object in its previous paint backing.
const LayoutPoint& previousPositionFromPaintInvalidationBacking() const
{
- ASSERT(!RuntimeEnabledFeatures::slimmingPaintV2Enabled());
+ ASSERT(!RuntimeEnabledFeatures::slimmingPaintOffsetCachingEnabled());
return m_previousPositionFromPaintInvalidationBacking;
}
void setPreviousPositionFromPaintInvalidationBacking(const LayoutPoint& positionFromPaintInvalidationBacking)
{
- ASSERT(!RuntimeEnabledFeatures::slimmingPaintV2Enabled());
+ ASSERT(!RuntimeEnabledFeatures::slimmingPaintOffsetCachingEnabled());
m_previousPositionFromPaintInvalidationBacking = positionFromPaintInvalidationBacking;
}
« no previous file with comments | « LayoutTests/paint/invalidation/percentage-transform-paint-offset-expected.html ('k') | Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698