| 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 88186a58e368e7f72fe904e233c96f6eefafdf0e..305016dd0618d054341a52fdbb7f813c1701790d 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| @@ -447,7 +447,7 @@ void LayoutView::setShouldDoFullPaintInvalidationForViewAndAllDescendants()
|
| setShouldDoFullPaintInvalidationForViewAndAllDescendantsInternal(this);
|
| }
|
|
|
| -void LayoutView::invalidatePaintForViewAndCompositedLayers()
|
| +void LayoutView::invalidatePaintForViewAndCompositedLayers(bool changeDirectlyCompositedImages)
|
| {
|
| setShouldDoFullPaintInvalidation();
|
|
|
| @@ -455,7 +455,7 @@ void LayoutView::invalidatePaintForViewAndCompositedLayers()
|
| DisableCompositingQueryAsserts disabler;
|
|
|
| if (compositor()->inCompositingMode())
|
| - compositor()->fullyInvalidatePaint();
|
| + compositor()->fullyInvalidatePaint(changeDirectlyCompositedImages);
|
| }
|
|
|
| void LayoutView::mapToVisibleRectInAncestorSpace(const LayoutBoxModelObject* ancestor, LayoutRect& rect, const PaintInvalidationState* invalidationState) const
|
|
|