| Index: Source/core/rendering/svg/RenderSVGInline.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGInline.cpp b/Source/core/rendering/svg/RenderSVGInline.cpp
|
| index c468cd6688f5a1f5498a9bf482aaa67a4fb9933d..1012f05521edf7b286d8a52dd48c11a8dbccafce 100644
|
| --- a/Source/core/rendering/svg/RenderSVGInline.cpp
|
| +++ b/Source/core/rendering/svg/RenderSVGInline.cpp
|
| @@ -78,22 +78,22 @@ FloatRect RenderSVGInline::strokeBoundingBox() const
|
| return FloatRect();
|
| }
|
|
|
| -FloatRect RenderSVGInline::repaintRectInLocalCoordinates() const
|
| +FloatRect RenderSVGInline::paintInvalidationRectInLocalCoordinates() const
|
| {
|
| if (const RenderObject* object = RenderSVGText::locateRenderSVGTextAncestor(this))
|
| - return object->repaintRectInLocalCoordinates();
|
| + return object->paintInvalidationRectInLocalCoordinates();
|
|
|
| return FloatRect();
|
| }
|
|
|
| -LayoutRect RenderSVGInline::clippedOverflowRectForRepaint(const RenderLayerModelObject* repaintContainer) const
|
| +LayoutRect RenderSVGInline::clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer) const
|
| {
|
| - return SVGRenderSupport::clippedOverflowRectForRepaint(this, repaintContainer);
|
| + return SVGRenderSupport::clippedOverflowRectForRepaint(this, paintInvalidationContainer);
|
| }
|
|
|
| -void RenderSVGInline::computeFloatRectForRepaint(const RenderLayerModelObject* repaintContainer, FloatRect& repaintRect, bool fixed) const
|
| +void RenderSVGInline::computeFloatRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, FloatRect& paintInvalidationRect, bool fixed) const
|
| {
|
| - SVGRenderSupport::computeFloatRectForRepaint(this, repaintContainer, repaintRect, fixed);
|
| + SVGRenderSupport::computeFloatRectForRepaint(this, paintInvalidationContainer, paintInvalidationRect, fixed);
|
| }
|
|
|
| void RenderSVGInline::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const
|
|
|