| 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 bbfcf0dd2f7f72df06cf0b364b4a488ec092fca9..f291ca093e9364afa7cadc019113def27d2ec74a 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| @@ -427,7 +427,7 @@ void LayoutView::paintBoxDecorationBackground(const PaintInfo& paintInfo, const
|
| ViewPainter(*this).paintBoxDecorationBackground(paintInfo);
|
| }
|
|
|
| -void LayoutView::invalidateTreeIfNeeded(PaintInvalidationState& paintInvalidationState)
|
| +PaintInvalidationReason LayoutView::invalidatePaintIfNeeded(PaintInvalidationState& paintInvalidationState, const LayoutBoxModelObject& paintInvalidationContainer)
|
| {
|
| ASSERT(!needsLayout());
|
|
|
| @@ -440,7 +440,7 @@ void LayoutView::invalidateTreeIfNeeded(PaintInvalidationState& paintInvalidatio
|
| invalidatePaintUsingContainer(paintInvalidationContainer, dirtyRect, PaintInvalidationFull);
|
| invalidateDisplayItemClientsWithPaintInvalidationState(paintInvalidationContainer, paintInvalidationState, PaintInvalidationFull);
|
| }
|
| - LayoutBlock::invalidateTreeIfNeeded(paintInvalidationState);
|
| + return LayoutBlock::invalidatePaintIfNeeded(paintInvalidationState, paintInvalidationContainer);
|
| }
|
|
|
| static void setShouldDoFullPaintInvalidationForViewAndAllDescendantsInternal(LayoutObject* object)
|
|
|