| Index: sky/engine/core/rendering/RenderObject.cpp
|
| diff --git a/sky/engine/core/rendering/RenderObject.cpp b/sky/engine/core/rendering/RenderObject.cpp
|
| index 65e3ec3a7174e083a03ce1b8a58c93530db08d2a..6d671c1865ffd3ed5b8a03445bfd83c589bcc492 100644
|
| --- a/sky/engine/core/rendering/RenderObject.cpp
|
| +++ b/sky/engine/core/rendering/RenderObject.cpp
|
| @@ -1218,23 +1218,6 @@ const RenderLayerModelObject* RenderObject::adjustCompositedContainerForSpecialA
|
| return view();
|
| }
|
|
|
| -LayoutRect RenderObject::computePaintInvalidationRect(const RenderLayerModelObject* paintInvalidationContainer, const PaintInvalidationState* paintInvalidationState) const
|
| -{
|
| - return clippedOverflowRectForPaintInvalidation(paintInvalidationContainer, paintInvalidationState);
|
| -}
|
| -
|
| -LayoutRect RenderObject::boundsRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, const PaintInvalidationState* paintInvalidationState) const
|
| -{
|
| - if (!paintInvalidationContainer)
|
| - return computePaintInvalidationRect(paintInvalidationContainer, paintInvalidationState);
|
| - return RenderLayer::computePaintInvalidationRect(this, paintInvalidationContainer->layer(), paintInvalidationState);
|
| -}
|
| -
|
| -IntRect RenderObject::pixelSnappedAbsoluteClippedOverflowRect() const
|
| -{
|
| - return pixelSnappedIntRect(absoluteClippedOverflowRect());
|
| -}
|
| -
|
| void RenderObject::invalidateTreeIfNeeded(const PaintInvalidationState& paintInvalidationState)
|
| {
|
| // If we didn't need paint invalidation then our children don't need as well.
|
| @@ -1250,24 +1233,6 @@ void RenderObject::invalidateTreeIfNeeded(const PaintInvalidationState& paintInv
|
| }
|
| }
|
|
|
| -LayoutRect RenderObject::rectWithOutlineForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, LayoutUnit outlineWidth, const PaintInvalidationState* paintInvalidationState) const
|
| -{
|
| - LayoutRect r(clippedOverflowRectForPaintInvalidation(paintInvalidationContainer, paintInvalidationState));
|
| - r.inflate(outlineWidth);
|
| - return r;
|
| -}
|
| -
|
| -LayoutRect RenderObject::absoluteClippedOverflowRect() const
|
| -{
|
| - return clippedOverflowRectForPaintInvalidation(view());
|
| -}
|
| -
|
| -LayoutRect RenderObject::clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject*, const PaintInvalidationState*) const
|
| -{
|
| - ASSERT_NOT_REACHED();
|
| - return LayoutRect();
|
| -}
|
| -
|
| void RenderObject::mapRectToPaintInvalidationBacking(const RenderLayerModelObject* paintInvalidationContainer, LayoutRect& rect, const PaintInvalidationState* paintInvalidationState) const
|
| {
|
| if (paintInvalidationContainer == this)
|
| @@ -1285,11 +1250,6 @@ void RenderObject::mapRectToPaintInvalidationBacking(const RenderLayerModelObjec
|
| }
|
| }
|
|
|
| -void RenderObject::computeFloatRectForPaintInvalidation(const RenderLayerModelObject*, FloatRect&, const PaintInvalidationState*) const
|
| -{
|
| - ASSERT_NOT_REACHED();
|
| -}
|
| -
|
| void RenderObject::dirtyLinesFromChangedChild(RenderObject*)
|
| {
|
| }
|
|
|