| Index: third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutView.cpp b/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| index 28d82f1438ddc43be2cadbe714295b402a0039f8..7491aa73fd4a04a2148c639862baa337b2d25a9c 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| @@ -410,7 +410,7 @@ void LayoutView::setShouldDoFullPaintInvalidationForViewAndAllDescendants()
|
| setShouldDoFullPaintInvalidationForViewAndAllDescendantsInternal(this);
|
| }
|
|
|
| -void LayoutView::invalidatePaintForViewAndCompositedLayers()
|
| +void LayoutView::invalidatePaintForViewAndCompositedLayers(bool changeDirectlyCompositedImages)
|
| {
|
| setShouldDoFullPaintInvalidation();
|
|
|
| @@ -418,7 +418,7 @@ void LayoutView::invalidatePaintForViewAndCompositedLayers()
|
| DisableCompositingQueryAsserts disabler;
|
|
|
| if (compositor()->inCompositingMode())
|
| - compositor()->fullyInvalidatePaint();
|
| + compositor()->fullyInvalidatePaint(changeDirectlyCompositedImages);
|
| }
|
|
|
| void LayoutView::mapRectToPaintInvalidationBacking(const LayoutBoxModelObject* paintInvalidationContainer, LayoutRect& rect, const PaintInvalidationState* invalidationState) const
|
|
|