Index: Source/core/layout/svg/LayoutSVGPath.h |
diff --git a/Source/core/rendering/svg/RenderSVGPath.h b/Source/core/layout/svg/LayoutSVGPath.h |
similarity index 86% |
rename from Source/core/rendering/svg/RenderSVGPath.h |
rename to Source/core/layout/svg/LayoutSVGPath.h |
index 43aa53a04a102885b6ecd1b6adcc175fe7c61eba..1dd268ec1ea97e2fb64115e91316a647859dc8d3 100644 |
--- a/Source/core/rendering/svg/RenderSVGPath.h |
+++ b/Source/core/layout/svg/LayoutSVGPath.h |
@@ -23,17 +23,17 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
-#ifndef RenderSVGPath_h |
-#define RenderSVGPath_h |
+#ifndef LayoutSVGPath_h |
+#define LayoutSVGPath_h |
-#include "core/rendering/svg/RenderSVGShape.h" |
+#include "core/layout/svg/LayoutSVGShape.h" |
namespace blink { |
-class RenderSVGPath final : public RenderSVGShape { |
+class LayoutSVGPath final : public LayoutSVGShape { |
public: |
- explicit RenderSVGPath(SVGGraphicsElement*); |
- virtual ~RenderSVGPath(); |
+ explicit LayoutSVGPath(SVGGraphicsElement*); |
+ virtual ~LayoutSVGPath(); |
virtual const Vector<MarkerPosition>* markerPositions() const override { return &m_markerPositions; } |
@@ -41,7 +41,7 @@ public: |
static FloatRect zeroLengthSubpathRect(const FloatPoint&, float); |
private: |
- virtual const char* renderName() const override { return "RenderSVGPath"; } |
+ virtual const char* renderName() const override { return "LayoutSVGPath"; } |
virtual void updateShapeFromElement() override; |
FloatRect calculateUpdatedStrokeBoundingBox() const; |