| Index: Source/core/svg/SVGTextContentElement.h
|
| diff --git a/Source/core/svg/SVGTextContentElement.h b/Source/core/svg/SVGTextContentElement.h
|
| index a1b962881fb69c5bb100986e829904a4c0f6a19b..7649dae287b8ab85a6d8181cc795160d68e18a3e 100644
|
| --- a/Source/core/svg/SVGTextContentElement.h
|
| +++ b/Source/core/svg/SVGTextContentElement.h
|
| @@ -70,14 +70,14 @@ public:
|
| protected:
|
| SVGTextContentElement(const QualifiedName&, Document&);
|
|
|
| - virtual bool isPresentationAttribute(const QualifiedName&) const override final;
|
| - virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override final;
|
| - virtual void svgAttributeChanged(const QualifiedName&) override;
|
| + bool isPresentationAttribute(const QualifiedName&) const final;
|
| + void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) final;
|
| + void svgAttributeChanged(const QualifiedName&) override;
|
|
|
| - virtual bool selfHasRelativeLengths() const override;
|
| + bool selfHasRelativeLengths() const override;
|
|
|
| private:
|
| - virtual bool isTextContent() const override final { return true; }
|
| + bool isTextContent() const final { return true; }
|
|
|
| RefPtrWillBeMember<SVGAnimatedLength> m_textLength;
|
| bool m_textLengthIsSpecifiedByUser;
|
|
|