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) |