| Index: third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.cpp b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| index 6aa246a751a34c29f6188630e8fc544454e7db43..3c34451ac4cc71c13010316e3f08a189ec7a3103 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| @@ -167,6 +167,7 @@ PaintLayer::PaintLayer(LayoutBoxModelObject* layoutObject)
|
| , m_hasDescendantWithClipPath(false)
|
| , m_hasNonIsolatedDescendantWithBlendMode(false)
|
| , m_hasAncestorWithClipPath(false)
|
| + , m_hasRootScrollerAsDescendant(false)
|
| , m_layoutObject(layoutObject)
|
| , m_parent(0)
|
| , m_previous(0)
|
| @@ -983,10 +984,11 @@ void PaintLayer::updateAncestorDependentCompositingInputs(const AncestorDependen
|
| m_needsAncestorDependentCompositingInputsUpdate = false;
|
| }
|
|
|
| -void PaintLayer::updateDescendantDependentCompositingInputs(bool hasDescendantWithClipPath, bool hasNonIsolatedDescendantWithBlendMode)
|
| +void PaintLayer::updateDescendantDependentCompositingInputs(bool hasDescendantWithClipPath, bool hasNonIsolatedDescendantWithBlendMode, bool hasRootScrollerAsDescendant)
|
| {
|
| m_hasDescendantWithClipPath = hasDescendantWithClipPath;
|
| m_hasNonIsolatedDescendantWithBlendMode = hasNonIsolatedDescendantWithBlendMode;
|
| + m_hasRootScrollerAsDescendant = hasRootScrollerAsDescendant;
|
| m_needsDescendantDependentCompositingInputsUpdate = false;
|
| }
|
|
|
|
|