| Index: Source/core/rendering/svg/RenderSVGTextPath.h
|
| diff --git a/Source/core/rendering/svg/RenderSVGTextPath.h b/Source/core/rendering/svg/RenderSVGTextPath.h
|
| index dc76587d4912f10970f6b9441269eb12f28f2f7f..163b9903c5f9abe23d8aaa3600d528b20fcd107e 100644
|
| --- a/Source/core/rendering/svg/RenderSVGTextPath.h
|
| +++ b/Source/core/rendering/svg/RenderSVGTextPath.h
|
| @@ -25,19 +25,19 @@
|
|
|
| namespace blink {
|
|
|
| -class RenderSVGTextPath FINAL : public RenderSVGInline {
|
| +class RenderSVGTextPath final : public RenderSVGInline {
|
| public:
|
| explicit RenderSVGTextPath(Element*);
|
|
|
| Path layoutPath() const;
|
| float startOffset() const;
|
|
|
| - virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE;
|
| + virtual bool isChildAllowed(RenderObject*, RenderStyle*) const override;
|
|
|
| - virtual bool isSVGTextPath() const OVERRIDE { return true; }
|
| + virtual bool isSVGTextPath() const override { return true; }
|
|
|
| private:
|
| - virtual const char* renderName() const OVERRIDE { return "RenderSVGTextPath"; }
|
| + virtual const char* renderName() const override { return "RenderSVGTextPath"; }
|
|
|
| Path m_layoutPath;
|
| };
|
|
|