| 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 30cad3431d944a215956dc8a5ce42586afecf690..1358ae6ca1ea587e520f88d952edd6c9dccb3823 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayer.h
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayer.h
|
| @@ -585,7 +585,7 @@ public:
|
|
|
| void updateAncestorOverflowLayer(const PaintLayer* ancestorOverflowLayer) { m_ancestorOverflowLayer = ancestorOverflowLayer; }
|
| void updateAncestorDependentCompositingInputs(const AncestorDependentCompositingInputs&, const RareAncestorDependentCompositingInputs&, bool hasAncestorWithClipPath);
|
| - void updateDescendantDependentCompositingInputs(bool hasDescendantWithClipPath, bool hasNonIsolatedDescendantWithBlendMode);
|
| + void updateDescendantDependentCompositingInputs(bool hasDescendantWithClipPath, bool hasNonIsolatedDescendantWithBlendMode, bool hasRootScrollerAsDescendant);
|
| void didUpdateCompositingInputs();
|
|
|
| IntRect clippedAbsoluteBoundingBox() const { ASSERT(!m_needsAncestorDependentCompositingInputsUpdate); return m_ancestorDependentCompositingInputs.clippedAbsoluteBoundingBox; }
|
| @@ -602,6 +602,8 @@ public:
|
| bool hasDescendantWithClipPath() const { ASSERT(!m_needsDescendantDependentCompositingInputsUpdate); return m_hasDescendantWithClipPath; }
|
| bool hasNonIsolatedDescendantWithBlendMode() const;
|
|
|
| + bool hasRootScrollerAsDescendant() const { ASSERT(!m_needsDescendantDependentCompositingInputsUpdate); return m_hasRootScrollerAsDescendant; }
|
| +
|
| bool lostGroupedMapping() const { ASSERT(isAllowedToQueryCompositingState()); return m_lostGroupedMapping; }
|
| void setLostGroupedMapping(bool b) { m_lostGroupedMapping = b; }
|
|
|
| @@ -881,6 +883,7 @@ private:
|
| unsigned m_hasDescendantWithClipPath : 1;
|
| unsigned m_hasNonIsolatedDescendantWithBlendMode : 1;
|
| unsigned m_hasAncestorWithClipPath : 1;
|
| + unsigned m_hasRootScrollerAsDescendant : 1;
|
|
|
| LayoutBoxModelObject* m_layoutObject;
|
|
|
|
|