Index: Source/core/svg/SVGAElement.cpp |
diff --git a/Source/core/svg/SVGAElement.cpp b/Source/core/svg/SVGAElement.cpp |
index 1f5dbee1d1b37ab50ef28a7e88cc888bcc933c5d..0e89a5b143233c87e0e0fed93c2a1484994d8bed 100644 |
--- a/Source/core/svg/SVGAElement.cpp |
+++ b/Source/core/svg/SVGAElement.cpp |
@@ -38,13 +38,13 @@ |
#include "core/html/parser/HTMLParserIdioms.h" |
#include "core/layout/svg/LayoutSVGInline.h" |
#include "core/layout/svg/LayoutSVGText.h" |
+#include "core/layout/svg/LayoutSVGTransformableContainer.h" |
#include "core/loader/FrameLoadRequest.h" |
#include "core/loader/FrameLoader.h" |
#include "core/loader/FrameLoaderTypes.h" |
#include "core/page/Chrome.h" |
#include "core/page/ChromeClient.h" |
#include "core/page/Page.h" |
-#include "core/rendering/svg/RenderSVGTransformableContainer.h" |
#include "core/svg/animation/SVGSMILElement.h" |
#include "platform/PlatformMouseEvent.h" |
#include "platform/network/ResourceRequest.h" |
@@ -112,7 +112,7 @@ LayoutObject* SVGAElement::createRenderer(const LayoutStyle&) |
if (parentNode() && parentNode()->isSVGElement() && toSVGElement(parentNode())->isTextContent()) |
return new LayoutSVGInline(this); |
- return new RenderSVGTransformableContainer(this); |
+ return new LayoutSVGTransformableContainer(this); |
} |
void SVGAElement::defaultEventHandler(Event* event) |