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

Unified Diff: Source/core/svg/SVGGraphicsElement.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/SVGGeometryElement.cpp ('k') | Source/core/svg/SVGImageElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGGraphicsElement.cpp
diff --git a/Source/core/svg/SVGGraphicsElement.cpp b/Source/core/svg/SVGGraphicsElement.cpp
index ca5f2431c629ac7e5e074039869577ecc9ff6b3d..2931e0d0be3969aeb8d862e909b6b93cc1fa00fa 100644
--- a/Source/core/svg/SVGGraphicsElement.cpp
+++ b/Source/core/svg/SVGGraphicsElement.cpp
@@ -25,8 +25,8 @@
#include "core/SVGNames.h"
#include "core/css/resolver/StyleResolver.h"
+#include "core/layout/svg/LayoutSVGPath.h"
#include "core/layout/svg/SVGPathData.h"
-#include "core/rendering/svg/RenderSVGPath.h"
#include "core/svg/SVGElementRareData.h"
#include "platform/transforms/AffineTransform.h"
@@ -270,7 +270,7 @@ PassRefPtrWillBeRawPtr<SVGRectTearOff> SVGGraphicsElement::getBBoxFromJavascript
LayoutObject* SVGGraphicsElement::createRenderer(const LayoutStyle&)
{
// By default, any subclass is expected to do path-based drawing
- return new RenderSVGPath(this);
+ return new LayoutSVGPath(this);
}
void SVGGraphicsElement::toClipPath(Path& path)
« no previous file with comments | « Source/core/svg/SVGGeometryElement.cpp ('k') | Source/core/svg/SVGImageElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698