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

Unified Diff: Source/core/svg/SVGPathElement.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/SVGLineElement.cpp ('k') | Source/core/svg/SVGPolyElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « Source/core/svg/SVGLineElement.cpp ('k') | Source/core/svg/SVGPolyElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698