Index: Source/core/rendering/svg/RenderSVGInline.cpp |
diff --git a/Source/core/rendering/svg/RenderSVGInline.cpp b/Source/core/rendering/svg/RenderSVGInline.cpp |
index 07c0a58c4d9cb436befcd7ff0060e310bba795ba..19e28d7259d20a9795540e4ae6cdd4a0db0aa620 100644 |
--- a/Source/core/rendering/svg/RenderSVGInline.cpp |
+++ b/Source/core/rendering/svg/RenderSVGInline.cpp |
@@ -85,19 +85,19 @@ FloatRect RenderSVGInline::paintInvalidationRectInLocalCoordinates() const |
return FloatRect(); |
} |
-LayoutRect RenderSVGInline::clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer) const |
+LayoutRect RenderSVGInline::clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, const InvalidationTreeWalkState* invalidationTreeWalkState) const |
{ |
- return SVGRenderSupport::clippedOverflowRectForRepaint(this, paintInvalidationContainer); |
+ return SVGRenderSupport::clippedOverflowRectForRepaint(this, paintInvalidationContainer, invalidationTreeWalkState); |
} |
-void RenderSVGInline::computeFloatRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, FloatRect& paintInvalidationRect, bool fixed) const |
+void RenderSVGInline::computeFloatRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, FloatRect& paintInvalidationRect, bool fixed, const InvalidationTreeWalkState* invalidateTreeAfterLayout) const |
{ |
- SVGRenderSupport::computeFloatRectForRepaint(this, paintInvalidationContainer, paintInvalidationRect, fixed); |
+ SVGRenderSupport::computeFloatRectForRepaint(this, paintInvalidationContainer, paintInvalidationRect, fixed, invalidateTreeAfterLayout); |
} |
-void RenderSVGInline::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const |
+void RenderSVGInline::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed, const InvalidationTreeWalkState* invalidationTreeWalkState) const |
{ |
- SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed); |
+ SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed, invalidationTreeWalkState); |
} |
const RenderObject* RenderSVGInline::pushMappingToContainer(const RenderLayerModelObject* ancestorToStopAt, RenderGeometryMap& geometryMap) const |