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

Unified Diff: Source/core/layout/svg/LayoutSVGText.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/LayoutSVGShape.cpp ('k') | Source/core/layout/svg/LayoutSVGText.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGText.h
diff --git a/Source/core/layout/svg/LayoutSVGText.h b/Source/core/layout/svg/LayoutSVGText.h
index 80a95dbe90e4560412a35b11c07480cd54df55c1..513c7219f2c8fc2bcfbcd9f750b168740eeed062 100644
--- a/Source/core/layout/svg/LayoutSVGText.h
+++ b/Source/core/layout/svg/LayoutSVGText.h
@@ -22,8 +22,8 @@
#ifndef LayoutSVGText_h
#define LayoutSVGText_h
+#include "core/layout/svg/LayoutSVGBlock.h"
#include "core/layout/svg/SVGTextLayoutAttributesBuilder.h"
-#include "core/rendering/svg/RenderSVGBlock.h"
#include "platform/transforms/AffineTransform.h"
namespace blink {
@@ -32,7 +32,7 @@ class LayoutSVGInlineText;
class SVGTextElement;
class LayoutSVGInlineText;
-class LayoutSVGText final : public RenderSVGBlock {
+class LayoutSVGText final : public LayoutSVGBlock {
public:
explicit LayoutSVGText(SVGTextElement*);
virtual ~LayoutSVGText();
@@ -60,7 +60,7 @@ public:
private:
virtual const char* renderName() const override { return "LayoutSVGText"; }
- virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGText || RenderSVGBlock::isOfType(type); }
+ virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGText || LayoutSVGBlock::isOfType(type); }
virtual void paint(const PaintInfo&, const LayoutPoint&) override;
virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const FloatPoint& pointInParent, HitTestAction) override;
« no previous file with comments | « Source/core/layout/svg/LayoutSVGShape.cpp ('k') | Source/core/layout/svg/LayoutSVGText.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698