Index: third_party/WebKit/Source/core/layout/PaintInvalidationState.h |
diff --git a/third_party/WebKit/Source/core/layout/PaintInvalidationState.h b/third_party/WebKit/Source/core/layout/PaintInvalidationState.h |
index e43cfd6e738c5a2f9f9b3e2bcbf6c50a0ef31f99..eb418f94023e26cb72680c3bd2dc3f223107be28 100644 |
--- a/third_party/WebKit/Source/core/layout/PaintInvalidationState.h |
+++ b/third_party/WebKit/Source/core/layout/PaintInvalidationState.h |
@@ -39,6 +39,9 @@ public: |
bool forcedSubtreeInvalidationWithinContainer() const { return m_forcedSubtreeInvalidationWithinContainer; } |
void setForceSubtreeInvalidationWithinContainer() { m_forcedSubtreeInvalidationWithinContainer = true; } |
+ bool forcedSubtreeInvalidationRectUpdateWithinContainer() const { return m_forcedSubtreeInvalidationRectUpdateWithinContainer; } |
+ void setForceSubtreeInvalidationRectUpdateWithinContainer() { m_forcedSubtreeInvalidationRectUpdateWithinContainer = true; } |
+ |
const LayoutBoxModelObject& paintInvalidationContainer() const { return m_paintInvalidationContainer; } |
bool canMapToContainer(const LayoutBoxModelObject* container) const |
@@ -61,6 +64,7 @@ private: |
bool m_clipped; |
mutable bool m_cachedOffsetsEnabled; |
bool m_forcedSubtreeInvalidationWithinContainer; |
+ bool m_forcedSubtreeInvalidationRectUpdateWithinContainer; |
LayoutRect m_clipRect; |