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

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

Issue 631153003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/svg (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/SVGAngleTearOff.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 9ea630ba1db2da24c9cb77e9a9ef4351262ef10e..e558f53975f27a74f8b353b0bf25c9b1b440d716 100644
--- a/Source/core/svg/SVGAnimateElement.h
+++ b/Source/core/svg/SVGAnimateElement.h
@@ -38,7 +38,7 @@ public:
static PassRefPtrWillBeRawPtr<SVGAnimateElement> create(Document&);
virtual ~SVGAnimateElement();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
AnimatedPropertyType animatedPropertyType();
bool animatedPropertyTypeSupportsAddition();
@@ -46,25 +46,25 @@ public:
protected:
SVGAnimateElement(const QualifiedName&, Document&);
- virtual void resetAnimatedType() OVERRIDE FINAL;
- virtual void clearAnimatedType(SVGElement* targetElement) OVERRIDE FINAL;
+ virtual void resetAnimatedType() override final;
+ virtual void clearAnimatedType(SVGElement* targetElement) override final;
- 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() OVERRIDE FINAL;
+ 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() override final;
- virtual void setTargetElement(SVGElement*) OVERRIDE FINAL;
- virtual void setAttributeName(const QualifiedName&) OVERRIDE FINAL;
+ virtual void setTargetElement(SVGElement*) override final;
+ virtual void setAttributeName(const QualifiedName&) override final;
private:
void resetAnimatedPropertyType();
SVGAnimatedTypeAnimator* ensureAnimator();
- virtual bool hasValidAttributeType() OVERRIDE;
+ virtual bool hasValidAttributeType() override;
RefPtr<SVGPropertyBase> m_fromProperty;
RefPtr<SVGPropertyBase> m_toProperty;
« no previous file with comments | « Source/core/svg/SVGAngleTearOff.h ('k') | Source/core/svg/SVGAnimateMotionElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698