| 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 12f7a0ef121a622b79fed3e31feb5378abe4f76a..03425a08c230b6feb44b6a24140d546bd28c6c8d 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| @@ -382,7 +382,7 @@ void FrameView::invalidateRect(const IntRect& rect)
|
| layoutObject->borderTop() + layoutObject->paddingTop());
|
| // FIXME: We should not allow paint invalidation out of paint invalidation state. crbug.com/457415
|
| DisablePaintInvalidationStateAsserts paintInvalidationAssertDisabler;
|
| - layoutObject->invalidatePaintRectangleNotInvalidatingDisplayItemClients(LayoutRect(paintInvalidationRect));
|
| + layoutObject->invalidatePaintRectangle(LayoutRect(paintInvalidationRect));
|
| }
|
|
|
| void FrameView::setFrameRect(const IntRect& newRect)
|
| @@ -1105,8 +1105,8 @@ void FrameView::invalidateTreeIfNeeded(const PaintInvalidationState& paintInvali
|
|
|
| TRACE_EVENT1("blink", "FrameView::invalidateTree", "root", rootForPaintInvalidation.debugName().ascii());
|
|
|
| - rootForPaintInvalidation.invalidateTreeIfNeeded(paintInvalidationState);
|
| invalidatePaintIfNeeded(paintInvalidationState);
|
| + rootForPaintInvalidation.invalidateTreeIfNeeded(paintInvalidationState);
|
|
|
| #if ENABLE(ASSERT)
|
| layoutView()->assertSubtreeClearedPaintInvalidationFlags();
|
|
|