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

Unified Diff: Source/core/svg/SVGAnimatedAngle.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/SVGAnimateTransformElement.h ('k') | Source/core/svg/SVGAnimatedBoolean.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimatedAngle.h
diff --git a/Source/core/svg/SVGAnimatedAngle.h b/Source/core/svg/SVGAnimatedAngle.h
index c1db9a9aa45b8fd919265ef2e310c49dfee39cff..68100e0d9fdb4525933489a1ae8392ddf631520f 100644
--- a/Source/core/svg/SVGAnimatedAngle.h
+++ b/Source/core/svg/SVGAnimatedAngle.h
@@ -38,7 +38,7 @@ namespace blink {
class SVGMarkerElement;
-class SVGAnimatedAngle FINAL : public SVGAnimatedProperty<SVGAngle> {
+class SVGAnimatedAngle final : public SVGAnimatedProperty<SVGAngle> {
public:
static PassRefPtr<SVGAnimatedAngle> create(SVGMarkerElement* contextElement)
{
@@ -51,10 +51,10 @@ public:
// SVGAnimatedPropertyBase:
- virtual void synchronizeAttribute() OVERRIDE;
+ virtual void synchronizeAttribute() override;
- virtual void setAnimatedValue(PassRefPtr<SVGPropertyBase>) OVERRIDE;
- virtual void animationEnded() OVERRIDE;
+ virtual void setAnimatedValue(PassRefPtr<SVGPropertyBase>) override;
+ virtual void animationEnded() override;
protected:
SVGAnimatedAngle(SVGMarkerElement* contextElement);
« no previous file with comments | « Source/core/svg/SVGAnimateTransformElement.h ('k') | Source/core/svg/SVGAnimatedBoolean.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698