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

Unified Diff: Source/core/svg/SVGAnimationElement.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/SVGAnimatedTypeAnimator.h ('k') | Source/core/svg/SVGBoolean.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimationElement.h
diff --git a/Source/core/svg/SVGAnimationElement.h b/Source/core/svg/SVGAnimationElement.h
index 02824346158e369a32f437d50cf9414f034774aa..7838882c07cbbe7e42b0f5ef8dd85b76744ee033 100644
--- a/Source/core/svg/SVGAnimationElement.h
+++ b/Source/core/svg/SVGAnimationElement.h
@@ -136,8 +136,8 @@ protected:
void determinePropertyValueTypes(const String& from, const String& to);
bool isSupportedAttribute(const QualifiedName&);
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ virtual void svgAttributeChanged(const QualifiedName&) override;
enum AttributeType {
AttributeTypeCSS,
@@ -151,14 +151,14 @@ protected:
String fromValue() const;
// from SVGSMILElement
- virtual void startedActiveInterval() OVERRIDE;
- virtual void updateAnimation(float percent, unsigned repeat, SVGSMILElement* resultElement) OVERRIDE;
+ virtual void startedActiveInterval() override;
+ virtual void updateAnimation(float percent, unsigned repeat, SVGSMILElement* resultElement) override;
AnimatedPropertyValueType m_fromPropertyValueType;
AnimatedPropertyValueType m_toPropertyValueType;
- virtual void setTargetElement(SVGElement*) OVERRIDE;
- virtual void setAttributeName(const QualifiedName&) OVERRIDE;
+ virtual void setTargetElement(SVGElement*) override;
+ virtual void setAttributeName(const QualifiedName&) override;
bool hasInvalidCSSAttributeType() const { return m_hasInvalidCSSAttributeType; }
@@ -167,9 +167,9 @@ protected:
void setCalcMode(CalcMode calcMode) { m_calcMode = calcMode; }
private:
- virtual bool isValid() const OVERRIDE FINAL { return SVGTests::isValid(); }
+ virtual bool isValid() const override final { return SVGTests::isValid(); }
- virtual void animationAttributeChanged() OVERRIDE;
+ virtual void animationAttributeChanged() override;
void setAttributeType(const AtomicString&);
void checkInvalidCSSAttributeType(SVGElement*);
« no previous file with comments | « Source/core/svg/SVGAnimatedTypeAnimator.h ('k') | Source/core/svg/SVGBoolean.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698