| 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 a81c4447504eac6862e5716524517fc60d42c3dc..4959e65cffdd86d3499cbe53c908e02024163cdf 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| @@ -3234,18 +3234,17 @@ void FrameView::paintTree() {
|
| }
|
|
|
| void FrameView::paintGraphicsLayerRecursively(GraphicsLayer* graphicsLayer) {
|
| + DCHECK(!RuntimeEnabledFeatures::slimmingPaintV2Enabled());
|
| if (graphicsLayer->drawsContent()) {
|
| graphicsLayer->paint(nullptr);
|
| notifyPaint(graphicsLayer->getPaintController());
|
| }
|
|
|
| - if (!RuntimeEnabledFeatures::slimmingPaintV2Enabled()) {
|
| - if (GraphicsLayer* maskLayer = graphicsLayer->maskLayer())
|
| - paintGraphicsLayerRecursively(maskLayer);
|
| - if (GraphicsLayer* contentsClippingMaskLayer =
|
| - graphicsLayer->contentsClippingMaskLayer())
|
| - paintGraphicsLayerRecursively(contentsClippingMaskLayer);
|
| - }
|
| + if (GraphicsLayer* maskLayer = graphicsLayer->maskLayer())
|
| + paintGraphicsLayerRecursively(maskLayer);
|
| + if (GraphicsLayer* contentsClippingMaskLayer =
|
| + graphicsLayer->contentsClippingMaskLayer())
|
| + paintGraphicsLayerRecursively(contentsClippingMaskLayer);
|
|
|
| for (auto& child : graphicsLayer->children())
|
| paintGraphicsLayerRecursively(child);
|
|
|