Index: Source/core/svg/SVGPathElement.cpp |
diff --git a/Source/core/svg/SVGPathElement.cpp b/Source/core/svg/SVGPathElement.cpp |
index 0a3adf1ce43b85eb89bb080b72bbc02bb6f6fb5f..00410a8a0c7da1fdceae26ae1220539b06a94b6e 100644 |
--- a/Source/core/svg/SVGPathElement.cpp |
+++ b/Source/core/svg/SVGPathElement.cpp |
@@ -21,7 +21,7 @@ |
#include "config.h" |
#include "core/svg/SVGPathElement.h" |
-#include "core/rendering/svg/RenderSVGPath.h" |
+#include "core/layout/svg/LayoutSVGPath.h" |
#include "core/svg/SVGDocumentExtensions.h" |
#include "core/svg/SVGMPathElement.h" |
#include "core/svg/SVGPathSegArcAbs.h" |
@@ -218,7 +218,7 @@ void SVGPathElement::svgAttributeChanged(const QualifiedName& attrName) |
SVGElement::InvalidationGuard invalidationGuard(this); |
- RenderSVGShape* renderer = toRenderSVGShape(this->renderer()); |
+ LayoutSVGShape* renderer = toLayoutSVGShape(this->renderer()); |
if (attrName == SVGNames::dAttr) { |
if (renderer) |
@@ -262,7 +262,7 @@ void SVGPathElement::pathSegListChanged(ListModification listModification) |
invalidateSVGAttributes(); |
- RenderSVGShape* renderer = toRenderSVGShape(this->renderer()); |
+ LayoutSVGShape* renderer = toLayoutSVGShape(this->renderer()); |
if (!renderer) |
return; |
@@ -281,7 +281,7 @@ FloatRect SVGPathElement::getBBox() |
if (!renderer()) |
return FloatRect(); |
- RenderSVGShape* renderer = toRenderSVGShape(this->renderer()); |
+ LayoutSVGShape* renderer = toLayoutSVGShape(this->renderer()); |
return renderer->path().boundingRect(); |
} |