| Index: Source/core/layout/PaintInvalidationState.h
|
| diff --git a/Source/core/layout/PaintInvalidationState.h b/Source/core/layout/PaintInvalidationState.h
|
| index c175dce32f7193a2bd6a13757e6781942c1a5e3f..e43cfd6e738c5a2f9f9b3e2bcbf6c50a0ef31f99 100644
|
| --- a/Source/core/layout/PaintInvalidationState.h
|
| +++ b/Source/core/layout/PaintInvalidationState.h
|
| @@ -36,8 +36,8 @@ public:
|
| bool cachedOffsetsEnabled() const { return m_cachedOffsetsEnabled; }
|
| bool isClipped() const { return m_clipped; }
|
|
|
| - bool ancestorHadPaintInvalidationForLocationChange() const { return m_ancestorHadPaintInvalidationForLocationChange; }
|
| - void setAncestorHadPaintInvalidationForLocationChange() { m_ancestorHadPaintInvalidationForLocationChange = true; }
|
| + bool forcedSubtreeInvalidationWithinContainer() const { return m_forcedSubtreeInvalidationWithinContainer; }
|
| + void setForceSubtreeInvalidationWithinContainer() { m_forcedSubtreeInvalidationWithinContainer = true; }
|
|
|
| const LayoutBoxModelObject& paintInvalidationContainer() const { return m_paintInvalidationContainer; }
|
|
|
| @@ -60,7 +60,7 @@ private:
|
|
|
| bool m_clipped;
|
| mutable bool m_cachedOffsetsEnabled;
|
| - bool m_ancestorHadPaintInvalidationForLocationChange;
|
| + bool m_forcedSubtreeInvalidationWithinContainer;
|
|
|
| LayoutRect m_clipRect;
|
|
|
|
|