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

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

Issue 927583002: Moving RenderSVG* files from rendering/ 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/LayoutSVGInline.h ('k') | Source/core/layout/svg/LayoutSVGPath.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/layout/svg/LayoutSVGInline.h ('k') | Source/core/layout/svg/LayoutSVGPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698