Index: Source/core/svg/SVGUseElement.cpp |
diff --git a/Source/core/svg/SVGUseElement.cpp b/Source/core/svg/SVGUseElement.cpp |
index 29efdaf64d6328ff827f27cc80845cd79fd5862b..83b35e2e146fe4175f1a3f6b6328f811ed1a5421 100644 |
--- a/Source/core/svg/SVGUseElement.cpp |
+++ b/Source/core/svg/SVGUseElement.cpp |
@@ -35,7 +35,7 @@ |
#include "core/dom/shadow/ShadowRoot.h" |
#include "core/fetch/FetchRequest.h" |
#include "core/fetch/ResourceFetcher.h" |
-#include "core/rendering/svg/RenderSVGTransformableContainer.h" |
+#include "core/layout/svg/LayoutSVGTransformableContainer.h" |
#include "core/svg/SVGGElement.h" |
#include "core/svg/SVGLengthContext.h" |
#include "core/svg/SVGSVGElement.h" |
@@ -414,7 +414,7 @@ void SVGUseElement::buildShadowAndInstanceTree(SVGElement* target) |
LayoutObject* SVGUseElement::createRenderer(const LayoutStyle&) |
{ |
- return new RenderSVGTransformableContainer(this); |
+ return new LayoutSVGTransformableContainer(this); |
} |
static bool isDirectReference(const SVGElement& element) |