| Index: Source/core/rendering/RenderObject.cpp
|
| diff --git a/Source/core/rendering/RenderObject.cpp b/Source/core/rendering/RenderObject.cpp
|
| index 62c2fc1c0604dcc5e6f96c09d55e84d292d2ff76..bd81e32052873b06a824de4a8a46a4fff3ca2797 100644
|
| --- a/Source/core/rendering/RenderObject.cpp
|
| +++ b/Source/core/rendering/RenderObject.cpp
|
| @@ -1518,12 +1518,12 @@ void RenderObject::invalidatePaintUsingContainer(const RenderLayerModelObject* p
|
| DisableCompositingQueryAsserts disabler;
|
|
|
| if (paintInvalidationContainer->isRenderFlowThread()) {
|
| - toRenderFlowThread(paintInvalidationContainer)->repaintRectangleInRegions(r);
|
| + toRenderFlowThread(paintInvalidationContainer)->paintInvalidationRectangleInRegions(r);
|
| return;
|
| }
|
|
|
| if (paintInvalidationContainer->hasFilter() && paintInvalidationContainer->layer()->requiresFullLayerImageForFilters()) {
|
| - paintInvalidationContainer->layer()->paintInvalidator().setFilterBackendNeedsRepaintingInRect(r);
|
| + paintInvalidationContainer->layer()->paintInvalidator().setFilterBackendNeedsPaintInvalidationInRect(r);
|
| return;
|
| }
|
|
|
| @@ -1536,7 +1536,7 @@ void RenderObject::invalidatePaintUsingContainer(const RenderLayerModelObject* p
|
|
|
| if (v->usesCompositing()) {
|
| ASSERT(paintInvalidationContainer->hasLayer() && (paintInvalidationContainer->layer()->compositingState() == PaintsIntoOwnBacking || paintInvalidationContainer->layer()->compositingState() == PaintsIntoGroupedBacking));
|
| - paintInvalidationContainer->layer()->paintInvalidator().setBackingNeedsRepaintInRect(r);
|
| + paintInvalidationContainer->layer()->paintInvalidator().setBackingNeedsPaintInvalidationInRect(r);
|
| }
|
| }
|
|
|
| @@ -1785,7 +1785,7 @@ void RenderObject::mapRectToPaintInvalidationBacking(const RenderLayerModelObjec
|
|
|
| if (o->hasOverflowClip()) {
|
| RenderBox* boxParent = toRenderBox(o);
|
| - boxParent->applyCachedClipAndScrollOffsetForRepaint(rect);
|
| + boxParent->applyCachedClipAndScrollOffsetForPaintInvalidation(rect);
|
| if (rect.isEmpty())
|
| return;
|
| }
|
|
|