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

Unified Diff: Source/core/layout/svg/LayoutSVGRect.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/LayoutSVGPath.cpp ('k') | Source/core/layout/svg/LayoutSVGRect.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGRect.h
diff --git a/Source/core/layout/svg/LayoutSVGRect.h b/Source/core/layout/svg/LayoutSVGRect.h
index b036cbc93f17655396b5075a0e1d5e5daece5607..ce42736f8d82b3cc73608c2f331bdecbd218438b 100644
--- a/Source/core/layout/svg/LayoutSVGRect.h
+++ b/Source/core/layout/svg/LayoutSVGRect.h
@@ -28,11 +28,11 @@
#ifndef LayoutSVGRect_h
#define LayoutSVGRect_h
-#include "core/rendering/svg/RenderSVGShape.h"
+#include "core/layout/svg/LayoutSVGShape.h"
namespace blink {
-class LayoutSVGRect final : public RenderSVGShape {
+class LayoutSVGRect final : public LayoutSVGShape {
public:
explicit LayoutSVGRect(SVGRectElement*);
virtual ~LayoutSVGRect();
@@ -43,7 +43,7 @@ private:
virtual const char* renderName() const override { return "LayoutSVGRect"; }
virtual void updateShapeFromElement() override;
- virtual bool isShapeEmpty() const override { return m_usePathFallback ? RenderSVGShape::isShapeEmpty() : m_fillBoundingBox.isEmpty(); }
+ virtual bool isShapeEmpty() const override { return m_usePathFallback ? LayoutSVGShape::isShapeEmpty() : m_fillBoundingBox.isEmpty(); }
virtual bool shapeDependentStrokeContains(const FloatPoint&) override;
virtual bool shapeDependentFillContains(const FloatPoint&, const WindRule) const override;
bool definitelyHasSimpleStroke() const;
« no previous file with comments | « Source/core/layout/svg/LayoutSVGPath.cpp ('k') | Source/core/layout/svg/LayoutSVGRect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698