Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1492)

Unified Diff: Source/core/svg/SVGEllipseElement.cpp

Issue 927583002: Moving RenderSVG* files from rendering/ to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGCircleElement.cpp ('k') | Source/core/svg/SVGForeignObjectElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGEllipseElement.cpp
diff --git a/Source/core/svg/SVGEllipseElement.cpp b/Source/core/svg/SVGEllipseElement.cpp
index 55b5df175d68f59b4038276629186a195ba63a99..6f0269e0c1cfc849057f6474412076446eb571db 100644
--- a/Source/core/svg/SVGEllipseElement.cpp
+++ b/Source/core/svg/SVGEllipseElement.cpp
@@ -21,7 +21,7 @@
#include "config.h"
#include "core/svg/SVGEllipseElement.h"
-#include "core/rendering/svg/RenderSVGEllipse.h"
+#include "core/layout/svg/LayoutSVGEllipse.h"
#include "core/svg/SVGLength.h"
namespace blink {
@@ -84,7 +84,7 @@ void SVGEllipseElement::svgAttributeChanged(const QualifiedName& attrName)
if (isLengthAttribute)
updateRelativeLengthsInformation();
- RenderSVGShape* renderer = toRenderSVGShape(this->renderer());
+ LayoutSVGShape* renderer = toLayoutSVGShape(this->renderer());
if (!renderer)
return;
@@ -107,7 +107,7 @@ bool SVGEllipseElement::selfHasRelativeLengths() const
LayoutObject* SVGEllipseElement::createRenderer(const LayoutStyle&)
{
- return new RenderSVGEllipse(this);
+ return new LayoutSVGEllipse(this);
}
} // namespace blink
« no previous file with comments | « Source/core/svg/SVGCircleElement.cpp ('k') | Source/core/svg/SVGForeignObjectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698