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

Unified Diff: Source/core/svg/SVGTextContentElement.h

Issue 1212253012: Fix virtual/override/final usage in Source/core/svg/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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
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;

Powered by Google App Engine
This is Rietveld 408576698