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

Unified Diff: Source/core/svg/SVGAnimateMotionElement.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/SVGAnimateElement.h ('k') | Source/core/svg/SVGAnimateTransformElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimateMotionElement.h
diff --git a/Source/core/svg/SVGAnimateMotionElement.h b/Source/core/svg/SVGAnimateMotionElement.h
index d3a54df002769270e8dd389541b3458c6f99a057..73aac8730b2bc60cd75dfb4dc493494fa389a43a 100644
--- a/Source/core/svg/SVGAnimateMotionElement.h
+++ b/Source/core/svg/SVGAnimateMotionElement.h
@@ -26,7 +26,7 @@
namespace blink {
-class SVGAnimateMotionElement FINAL : public SVGAnimationElement {
+class SVGAnimateMotionElement final : public SVGAnimationElement {
DEFINE_WRAPPERTYPEINFO();
public:
virtual ~SVGAnimateMotionElement();
@@ -37,19 +37,19 @@ public:
private:
explicit SVGAnimateMotionElement(Document&);
- virtual bool hasValidAttributeType() OVERRIDE;
- virtual bool hasValidAttributeName() OVERRIDE;
+ virtual bool hasValidAttributeType() override;
+ virtual bool hasValidAttributeName() override;
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
- virtual void resetAnimatedType() OVERRIDE;
- virtual void clearAnimatedType(SVGElement* targetElement) OVERRIDE;
- virtual bool calculateToAtEndOfDurationValue(const String& toAtEndOfDurationString) OVERRIDE;
- virtual bool calculateFromAndToValues(const String& fromString, const String& toString) OVERRIDE;
- virtual bool calculateFromAndByValues(const String& fromString, const String& byString) OVERRIDE;
- virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGSMILElement* resultElement) OVERRIDE;
- virtual void applyResultsToTarget() OVERRIDE;
- virtual float calculateDistance(const String& fromString, const String& toString) OVERRIDE;
+ virtual void resetAnimatedType() override;
+ virtual void clearAnimatedType(SVGElement* targetElement) override;
+ virtual bool calculateToAtEndOfDurationValue(const String& toAtEndOfDurationString) override;
+ virtual bool calculateFromAndToValues(const String& fromString, const String& toString) override;
+ virtual bool calculateFromAndByValues(const String& fromString, const String& byString) override;
+ virtual void calculateAnimatedValue(float percentage, unsigned repeatCount, SVGSMILElement* resultElement) override;
+ virtual void applyResultsToTarget() override;
+ virtual float calculateDistance(const String& fromString, const String& toString) override;
enum RotateMode {
RotateAngle,
@@ -60,7 +60,7 @@ private:
bool m_hasToPointAtEndOfDuration;
- virtual void updateAnimationMode() OVERRIDE;
+ virtual void updateAnimationMode() override;
// Note: we do not support percentage values for to/from coords as the spec implies we should (opera doesn't either)
FloatPoint m_fromPoint;
« no previous file with comments | « Source/core/svg/SVGAnimateElement.h ('k') | Source/core/svg/SVGAnimateTransformElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698