| 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 48e57126a4c7b52cf21a1e05b264edbf21bd42f2..7284419f945ebbe0ea2d7aeadc30cd1f3de2d894 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
|
| @@ -2586,12 +2586,11 @@ GraphicsLayer* PaintLayer::graphicsLayerBacking(const LayoutObject* obj) const {
|
| }
|
| }
|
|
|
| -BackgroundPaintLocation PaintLayer::backgroundPaintLocation(
|
| - uint32_t* reasons) const {
|
| +BackgroundPaintLocation PaintLayer::backgroundPaintLocation() const {
|
| BackgroundPaintLocation location =
|
| isRootLayer() || !scrollsOverflow()
|
| ? BackgroundPaintInGraphicsLayer
|
| - : layoutObject()->backgroundPaintLocation(reasons);
|
| + : layoutObject()->backgroundPaintLocation();
|
| m_stackingNode->updateLayerListsIfNeeded();
|
| if (m_stackingNode->hasNegativeZOrderList())
|
| location = BackgroundPaintInGraphicsLayer;
|
|
|