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

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

Issue 933953003: Move the remaining rendering/svg/RenderSVG* files to layout. (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
« no previous file with comments | « Source/core/layout/svg/LayoutSVGBlock.cpp ('k') | Source/core/layout/svg/LayoutSVGContainer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/layout/svg/LayoutSVGBlock.cpp ('k') | Source/core/layout/svg/LayoutSVGContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698