| Index: third_party/WebKit/Source/core/frame/FrameView.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| index 8628654867586e554f1c3f330134d095856b5790..241d1a683ceecd847c7727b460633cd98a84db35 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| @@ -2517,7 +2517,7 @@ void FrameView::synchronizedPaintRecursively(GraphicsLayer* graphicsLayer, const
|
| graphicsLayer->paintIfNeeded(context);
|
|
|
| if (!RuntimeEnabledFeatures::slimmingPaintV2Enabled())
|
| - graphicsLayer->paintController()->commitNewDisplayItems(graphicsLayer);
|
| + graphicsLayer->paintController()->commitNewDisplayItems();
|
|
|
| for (auto& child : graphicsLayer->children())
|
| synchronizedPaintRecursively(child, interestRect);
|
| @@ -2532,7 +2532,7 @@ void FrameView::compositeForSlimmingPaintV2()
|
|
|
| // Detached frames can have no root graphics layer.
|
| if (GraphicsLayer* rootGraphicsLayer = layoutView()->layer()->graphicsLayerBacking())
|
| - rootGraphicsLayer->paintController()->commitNewDisplayItems(rootGraphicsLayer);
|
| + rootGraphicsLayer->paintController()->commitNewDisplayItems();
|
|
|
| forAllFrameViews([](FrameView& frameView) { frameView.lifecycle().advanceTo(DocumentLifecycle::CompositingForSlimmingPaintV2Clean); });
|
| }
|
|
|