Index: Source/core/layout/svg/LayoutSVGContainer.h |
diff --git a/Source/core/layout/svg/LayoutSVGContainer.h b/Source/core/layout/svg/LayoutSVGContainer.h |
index 26f41d4b2e07e7efd8fa7b9d7accc5049f6d7b24..59645256e5c16d489365f74d915dfd93e1dbf6eb 100644 |
--- a/Source/core/layout/svg/LayoutSVGContainer.h |
+++ b/Source/core/layout/svg/LayoutSVGContainer.h |
@@ -23,13 +23,13 @@ |
#ifndef LayoutSVGContainer_h |
#define LayoutSVGContainer_h |
-#include "core/rendering/svg/RenderSVGModelObject.h" |
+#include "core/layout/svg/LayoutSVGModelObject.h" |
namespace blink { |
class SVGElement; |
-class LayoutSVGContainer : public RenderSVGModelObject { |
+class LayoutSVGContainer : public LayoutSVGModelObject { |
public: |
explicit LayoutSVGContainer(SVGElement*); |
virtual ~LayoutSVGContainer(); |
@@ -54,7 +54,7 @@ protected: |
virtual LayoutObjectChildList* virtualChildren() override final { return children(); } |
virtual const LayoutObjectChildList* virtualChildren() const override final { return children(); } |
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGContainer || RenderSVGModelObject::isOfType(type); } |
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGContainer || LayoutSVGModelObject::isOfType(type); } |
virtual const char* renderName() const override { return "LayoutSVGContainer"; } |
virtual void layout() override; |