Index: third_party/WebKit/Source/core/paint/PaintLayer.h |
diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.h b/third_party/WebKit/Source/core/paint/PaintLayer.h |
index 3d5d315fd6ad1392f26458a2320cfb5ff8f7270b..1d4e092f0ae706e5cc406ade3349e0f010f4acdf 100644 |
--- a/third_party/WebKit/Source/core/paint/PaintLayer.h |
+++ b/third_party/WebKit/Source/core/paint/PaintLayer.h |
@@ -630,6 +630,9 @@ public: |
bool needsPaintPhaseFloat() const { return m_needsPaintPhaseFloat; } |
void setNeedsPaintPhaseFloat() { ASSERT(isSelfPaintingLayer()); m_needsPaintPhaseFloat = true; } |
+ bool needsPaintPhaseDescendantBlockBackgrounds() const { return m_needsPaintPhaseDescendantBlockBackgrounds; } |
+ void setNeedsPaintPhaseDescendantBlockBackgrounds() { ASSERT(isSelfPaintingLayer()); m_needsPaintPhaseDescendantBlockBackgrounds = true; } |
+ |
PaintTiming* paintTiming(); |
private: |
@@ -764,6 +767,7 @@ private: |
unsigned m_needsPaintPhaseDescendantOutlines : 1; |
unsigned m_needsPaintPhaseFloat : 1; |
+ unsigned m_needsPaintPhaseDescendantBlockBackgrounds : 1; |
LayoutBoxModelObject* m_layoutObject; |