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 db8ef7d711bace6c365ea47a4b1566ab178db554..073009e9d4aa0b1c2290f624a524def54f5fec5c 100644 |
--- a/third_party/WebKit/Source/core/paint/PaintLayer.h |
+++ b/third_party/WebKit/Source/core/paint/PaintLayer.h |
@@ -631,6 +631,10 @@ public: |
bool needsPaintPhaseDescendantOutlines() const { return m_needsPaintPhaseDescendantOutlines; } |
void setNeedsPaintPhaseDescendantOutlines() { ASSERT(isSelfPaintingLayer()); m_needsPaintPhaseDescendantOutlines = true; } |
+ // Similar to above, but for PaintPhaseFloat. |
+ bool needsPaintPhaseFloat() const { return m_needsPaintPhaseFloat; } |
+ void setNeedsPaintPhaseFloat() { ASSERT(isSelfPaintingLayer()); m_needsPaintPhaseFloat = true; } |
+ |
PaintTiming* paintTiming(); |
private: |
@@ -764,6 +768,7 @@ private: |
unsigned m_previousPaintResult : 1; // PaintLayerPainter::PaintResult |
unsigned m_needsPaintPhaseDescendantOutlines : 1; |
+ unsigned m_needsPaintPhaseFloat : 1; |
LayoutBoxModelObject* m_layoutObject; |