Index: Source/core/layout/svg/LayoutSVGResourceContainer.h |
diff --git a/Source/core/layout/svg/LayoutSVGResourceContainer.h b/Source/core/layout/svg/LayoutSVGResourceContainer.h |
index db4bfa9929221e8e6f596003bac38d7e552ff963..86d3bf3b594cdb9e99c430c546b02bb9fff9208d 100644 |
--- a/Source/core/layout/svg/LayoutSVGResourceContainer.h |
+++ b/Source/core/layout/svg/LayoutSVGResourceContainer.h |
@@ -20,7 +20,7 @@ |
#ifndef LayoutSVGResourceContainer_h |
#define LayoutSVGResourceContainer_h |
-#include "core/rendering/svg/RenderSVGHiddenContainer.h" |
+#include "core/layout/svg/LayoutSVGHiddenContainer.h" |
#include "core/svg/SVGDocumentExtensions.h" |
namespace blink { |
@@ -37,7 +37,7 @@ enum LayoutSVGResourceType { |
class Layer; |
-class LayoutSVGResourceContainer : public RenderSVGHiddenContainer { |
+class LayoutSVGResourceContainer : public LayoutSVGHiddenContainer { |
public: |
explicit LayoutSVGResourceContainer(SVGElement*); |
virtual ~LayoutSVGResourceContainer(); |
@@ -47,7 +47,7 @@ public: |
virtual void layout() override; |
virtual void styleDidChange(StyleDifference, const LayoutStyle* oldStyle) override final; |
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGResourceContainer || RenderSVGHiddenContainer::isOfType(type); } |
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGResourceContainer || LayoutSVGHiddenContainer::isOfType(type); } |
virtual LayoutSVGResourceType resourceType() const = 0; |