| Index: Source/core/svg/SVGCircleElement.cpp
|
| diff --git a/Source/core/svg/SVGCircleElement.cpp b/Source/core/svg/SVGCircleElement.cpp
|
| index bff9654a8eb86e0b3513bf47b7af301ec4f423e9..8e318aeb42ed4ef29517b5fce65bc659a8a4faed 100644
|
| --- a/Source/core/svg/SVGCircleElement.cpp
|
| +++ b/Source/core/svg/SVGCircleElement.cpp
|
| @@ -21,7 +21,7 @@
|
| #include "config.h"
|
| #include "core/svg/SVGCircleElement.h"
|
|
|
| -#include "core/rendering/svg/RenderSVGEllipse.h"
|
| +#include "core/layout/svg/LayoutSVGEllipse.h"
|
| #include "core/svg/SVGLength.h"
|
|
|
| namespace blink {
|
| @@ -79,7 +79,7 @@ void SVGCircleElement::svgAttributeChanged(const QualifiedName& attrName)
|
| if (isLengthAttribute)
|
| updateRelativeLengthsInformation();
|
|
|
| - RenderSVGShape* renderer = toRenderSVGShape(this->renderer());
|
| + LayoutSVGShape* renderer = toLayoutSVGShape(this->renderer());
|
| if (!renderer)
|
| return;
|
|
|
| @@ -101,7 +101,7 @@ bool SVGCircleElement::selfHasRelativeLengths() const
|
|
|
| LayoutObject* SVGCircleElement::createRenderer(const LayoutStyle&)
|
| {
|
| - return new RenderSVGEllipse(this);
|
| + return new LayoutSVGEllipse(this);
|
| }
|
|
|
| }
|
|
|