| 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;
|
|
|