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

Unified Diff: Source/core/svg/SVGTextPositioningElement.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/SVGTextPositioningElement.h
diff --git a/Source/core/svg/SVGTextPositioningElement.h b/Source/core/svg/SVGTextPositioningElement.h
index 49f0f70c8f59050969d34260c93450d26791fcbb..618a35f4a1f5c32abc682af9d429114a86471fcd 100644
--- a/Source/core/svg/SVGTextPositioningElement.h
+++ b/Source/core/svg/SVGTextPositioningElement.h
@@ -45,8 +45,8 @@ public:
protected:
SVGTextPositioningElement(const QualifiedName&, Document&);
- virtual void svgAttributeChanged(const QualifiedName&) override final;
- virtual bool isTextPositioning() const override final { return true; }
+ void svgAttributeChanged(const QualifiedName&) final;
+ bool isTextPositioning() const final { return true; }
RefPtrWillBeMember<SVGAnimatedLengthList> m_x;
RefPtrWillBeMember<SVGAnimatedLengthList> m_y;

Powered by Google App Engine
This is Rietveld 408576698