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

Unified Diff: Source/core/svg/SVGAnimatedNumberOptionalNumber.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/SVGAnimatedNumber.h ('k') | Source/core/svg/SVGAnimatedString.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGAnimatedNumberOptionalNumber.h
diff --git a/Source/core/svg/SVGAnimatedNumberOptionalNumber.h b/Source/core/svg/SVGAnimatedNumberOptionalNumber.h
index 8bb4dbeb72815131a44db5f399b37c8b34e7b7bb..302a403a671d34c59743f41ff23aaeda09aea769 100644
--- a/Source/core/svg/SVGAnimatedNumberOptionalNumber.h
+++ b/Source/core/svg/SVGAnimatedNumberOptionalNumber.h
@@ -48,9 +48,9 @@ public:
return adoptRef(new SVGAnimatedNumberOptionalNumber(contextElement, attributeName, initialFirstValue, initialSecondValue));
}
- virtual void setAnimatedValue(PassRefPtr<SVGPropertyBase>) OVERRIDE;
- virtual bool needsSynchronizeAttribute() OVERRIDE;
- virtual void animationEnded() OVERRIDE;
+ virtual void setAnimatedValue(PassRefPtr<SVGPropertyBase>) override;
+ virtual bool needsSynchronizeAttribute() override;
+ virtual void animationEnded() override;
SVGAnimatedNumber* firstNumber() { return m_firstNumber.get(); }
SVGAnimatedNumber* secondNumber() { return m_secondNumber.get(); }
« no previous file with comments | « Source/core/svg/SVGAnimatedNumber.h ('k') | Source/core/svg/SVGAnimatedString.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698