Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1067)

Unified Diff: Source/core/layout/svg/LayoutSVGResourceContainer.h

Issue 921633007: Move the SVG container code from rendering/svg to layout/svg. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « Source/core/layout/svg/LayoutSVGHiddenContainer.cpp ('k') | Source/core/layout/svg/LayoutSVGResourceContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698