| Index: Source/core/rendering/svg/RenderSVGModelObject.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGModelObject.cpp b/Source/core/rendering/svg/RenderSVGModelObject.cpp
|
| index 6ce91c1b93cae6090f938d4e69fb94670a55f348..d6635f673035997a695ee2b127aae8cdcb7e42e3 100644
|
| --- a/Source/core/rendering/svg/RenderSVGModelObject.cpp
|
| +++ b/Source/core/rendering/svg/RenderSVGModelObject.cpp
|
| @@ -31,7 +31,7 @@
|
| #include "config.h"
|
| #include "core/rendering/svg/RenderSVGModelObject.h"
|
|
|
| -#include "core/rendering/RenderLayer.h"
|
| +#include "core/layout/Layer.h"
|
| #include "core/rendering/RenderView.h"
|
| #include "core/rendering/svg/RenderSVGContainer.h"
|
| #include "core/rendering/svg/RenderSVGRoot.h"
|
| @@ -51,17 +51,17 @@ bool RenderSVGModelObject::isChildAllowed(RenderObject* child, RenderStyle*) con
|
| return child->isSVG() && !(child->isSVGInline() || child->isSVGInlineText());
|
| }
|
|
|
| -LayoutRect RenderSVGModelObject::clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, const PaintInvalidationState* paintInvalidationState) const
|
| +LayoutRect RenderSVGModelObject::clippedOverflowRectForPaintInvalidation(const LayoutLayerModelObject* paintInvalidationContainer, const PaintInvalidationState* paintInvalidationState) const
|
| {
|
| return SVGRenderSupport::clippedOverflowRectForPaintInvalidation(this, paintInvalidationContainer, paintInvalidationState);
|
| }
|
|
|
| -void RenderSVGModelObject::mapLocalToContainer(const RenderLayerModelObject* paintInvalidationContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed, const PaintInvalidationState* paintInvalidationState) const
|
| +void RenderSVGModelObject::mapLocalToContainer(const LayoutLayerModelObject* paintInvalidationContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed, const PaintInvalidationState* paintInvalidationState) const
|
| {
|
| SVGRenderSupport::mapLocalToContainer(this, paintInvalidationContainer, transformState, wasFixed, paintInvalidationState);
|
| }
|
|
|
| -const RenderObject* RenderSVGModelObject::pushMappingToContainer(const RenderLayerModelObject* ancestorToStopAt, RenderGeometryMap& geometryMap) const
|
| +const RenderObject* RenderSVGModelObject::pushMappingToContainer(const LayoutLayerModelObject* ancestorToStopAt, RenderGeometryMap& geometryMap) const
|
| {
|
| return SVGRenderSupport::pushMappingToContainer(this, ancestorToStopAt, geometryMap);
|
| }
|
| @@ -90,7 +90,7 @@ void RenderSVGModelObject::computeLayerHitTestRects(LayerHitTestRects& rects) co
|
| SVGRenderSupport::findTreeRootObject(this)->computeLayerHitTestRects(rects);
|
| }
|
|
|
| -void RenderSVGModelObject::addLayerHitTestRects(LayerHitTestRects&, const RenderLayer* currentLayer, const LayoutPoint& layerOffset, const LayoutRect& containerRect) const
|
| +void RenderSVGModelObject::addLayerHitTestRects(LayerHitTestRects&, const Layer* currentLayer, const LayoutPoint& layerOffset, const LayoutRect& containerRect) const
|
| {
|
| // We don't walk into SVG trees at all - just report their container.
|
| }
|
|
|