| Index: Source/core/rendering/svg/RenderSVGTextPath.h
|
| diff --git a/Source/core/rendering/svg/RenderSVGTextPath.h b/Source/core/rendering/svg/RenderSVGTextPath.h
|
| index 783a87b08bb704a8e0ca016c3591da340153ce65..3141c702ab86d1dc9fda477a092db9b0d4fde45a 100644
|
| --- a/Source/core/rendering/svg/RenderSVGTextPath.h
|
| +++ b/Source/core/rendering/svg/RenderSVGTextPath.h
|
| @@ -32,9 +32,9 @@ public:
|
| Path layoutPath() const;
|
| float startOffset() const;
|
|
|
| - virtual bool isChildAllowed(RenderObject*, RenderStyle*) const override;
|
| + virtual bool isChildAllowed(LayoutObject*, RenderStyle*) const override;
|
|
|
| - virtual bool isOfType(RenderObjectType type) const override { return type == RenderObjectSVGTextPath || RenderSVGInline::isOfType(type); }
|
| + virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectSVGTextPath || RenderSVGInline::isOfType(type); }
|
|
|
| private:
|
| virtual const char* renderName() const override { return "RenderSVGTextPath"; }
|
| @@ -42,7 +42,7 @@ private:
|
| Path m_layoutPath;
|
| };
|
|
|
| -DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGTextPath, isSVGTextPath());
|
| +DEFINE_LAYOUT_OBJECT_TYPE_CASTS(RenderSVGTextPath, isSVGTextPath());
|
|
|
| }
|
|
|
|
|