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

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

Issue 134593005: Update SVG classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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
« no previous file with comments | « Source/core/svg/SVGAltGlyphElement.h ('k') | Source/core/svg/SVGAnimateMotionElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimateElement.h
diff --git a/Source/core/svg/SVGAnimateElement.h b/Source/core/svg/SVGAnimateElement.h
index e8b2dc438ab235dfbf2313b5f4d3a77dd3cfbfdf..fc9da821350fee7416c9fa1c02b0ee8b16888fad 100644
--- a/Source/core/svg/SVGAnimateElement.h
+++ b/Source/core/svg/SVGAnimateElement.h
@@ -43,19 +43,19 @@ public:
protected:
SVGAnimateElement(const QualifiedName&, Document&);
- virtual void resetAnimatedType();
- virtual void clearAnimatedType(SVGElement* targetElement);
+ virtual void resetAnimatedType() OVERRIDE FINAL;
+ virtual void clearAnimatedType(SVGElement* targetElement) OVERRIDE FINAL;
- virtual bool calculateToAtEndOfDurationValue(const String& toAtEndOfDurationString);
- virtual bool calculateFromAndToValues(const String& fromString, const String& toString);
- virtual bool calculateFromAndByValues(const String& fromString, const String& byString);
- virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGSMILElement* resultElement);
- virtual void applyResultsToTarget();
- virtual float calculateDistance(const String& fromString, const String& toString);
- virtual bool isAdditive() const OVERRIDE;
+ virtual bool calculateToAtEndOfDurationValue(const String& toAtEndOfDurationString) OVERRIDE FINAL;
+ virtual bool calculateFromAndToValues(const String& fromString, const String& toString) OVERRIDE FINAL;
+ virtual bool calculateFromAndByValues(const String& fromString, const String& byString) OVERRIDE FINAL;
+ virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGSMILElement* resultElement) OVERRIDE FINAL;
+ virtual void applyResultsToTarget() OVERRIDE FINAL;
+ virtual float calculateDistance(const String& fromString, const String& toString) OVERRIDE FINAL;
+ virtual bool isAdditive() const OVERRIDE FINAL;
- virtual void setTargetElement(SVGElement*) OVERRIDE;
- virtual void setAttributeName(const QualifiedName&) OVERRIDE;
+ virtual void setTargetElement(SVGElement*) OVERRIDE FINAL;
+ virtual void setAttributeName(const QualifiedName&) OVERRIDE FINAL;
AnimatedPropertyType m_animatedPropertyType;
@@ -64,7 +64,7 @@ private:
SVGAnimatedTypeAnimator* ensureAnimator();
bool animatedPropertyTypeSupportsAddition() const;
- virtual bool hasValidAttributeType();
+ virtual bool hasValidAttributeType() OVERRIDE;
OwnPtr<SVGAnimatedType> m_fromType;
OwnPtr<SVGAnimatedType> m_toType;
« no previous file with comments | « Source/core/svg/SVGAltGlyphElement.h ('k') | Source/core/svg/SVGAnimateMotionElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698