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

Unified Diff: Source/core/layout/svg/LayoutSVGForeignObject.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/LayoutSVGContainer.cpp ('k') | Source/core/layout/svg/LayoutSVGForeignObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGForeignObject.h
diff --git a/Source/core/layout/svg/LayoutSVGForeignObject.h b/Source/core/layout/svg/LayoutSVGForeignObject.h
index 075136ed9d820e03ed005c6bf12f0bf1c7dd4fa6..0139cd45635476fbf82a9f17c9a04a8642513b2e 100644
--- a/Source/core/layout/svg/LayoutSVGForeignObject.h
+++ b/Source/core/layout/svg/LayoutSVGForeignObject.h
@@ -21,13 +21,13 @@
#ifndef LayoutSVGForeignObject_h
#define LayoutSVGForeignObject_h
-#include "core/rendering/svg/RenderSVGBlock.h"
+#include "core/layout/svg/LayoutSVGBlock.h"
namespace blink {
class SVGForeignObjectElement;
-class LayoutSVGForeignObject final : public RenderSVGBlock {
+class LayoutSVGForeignObject final : public LayoutSVGBlock {
public:
explicit LayoutSVGForeignObject(SVGForeignObjectElement*);
virtual ~LayoutSVGForeignObject();
@@ -45,7 +45,7 @@ public:
virtual FloatRect paintInvalidationRectInLocalCoordinates() const override { return FloatRect(FloatPoint(), m_viewport.size()); }
virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const FloatPoint& pointInParent, HitTestAction) override;
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGForeignObject || RenderSVGBlock::isOfType(type); }
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGForeignObject || LayoutSVGBlock::isOfType(type); }
virtual void setNeedsTransformUpdate() override { m_needsTransformUpdate = true; }
« no previous file with comments | « Source/core/layout/svg/LayoutSVGContainer.cpp ('k') | Source/core/layout/svg/LayoutSVGForeignObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698