| Index: sky/engine/core/rendering/RenderObject.cpp
|
| diff --git a/sky/engine/core/rendering/RenderObject.cpp b/sky/engine/core/rendering/RenderObject.cpp
|
| index 8398e227594cd3847a8deb784f066307419fc6cc..109b9ffa65e12c02ed9d03c9989393379852ba1b 100644
|
| --- a/sky/engine/core/rendering/RenderObject.cpp
|
| +++ b/sky/engine/core/rendering/RenderObject.cpp
|
| @@ -1105,23 +1105,6 @@ const RenderLayerModelObject* RenderObject::adjustCompositedContainerForSpecialA
|
| return view();
|
| }
|
|
|
| -void RenderObject::mapRectToPaintInvalidationBacking(const RenderLayerModelObject* paintInvalidationContainer, LayoutRect& rect, const PaintInvalidationState* paintInvalidationState) const
|
| -{
|
| - if (paintInvalidationContainer == this)
|
| - return;
|
| -
|
| - if (RenderObject* o = parent()) {
|
| - if (o->hasOverflowClip()) {
|
| - RenderBox* boxParent = toRenderBox(o);
|
| - boxParent->applyCachedClipAndScrollOffsetForPaintInvalidation(rect);
|
| - if (rect.isEmpty())
|
| - return;
|
| - }
|
| -
|
| - o->mapRectToPaintInvalidationBacking(paintInvalidationContainer, rect, paintInvalidationState);
|
| - }
|
| -}
|
| -
|
| void RenderObject::dirtyLinesFromChangedChild(RenderObject*)
|
| {
|
| }
|
|
|