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

Unified Diff: Source/core/svg/SVGStaticStringList.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/SVGSetElement.h ('k') | Source/core/svg/SVGStopElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGStaticStringList.h
diff --git a/Source/core/svg/SVGStaticStringList.h b/Source/core/svg/SVGStaticStringList.h
index 16658f50ef0c36e5fca714ed4a7e356d31b5b02c..e007bdee708bbebb0c7f4a6476d21e8a9c9bbb27 100644
--- a/Source/core/svg/SVGStaticStringList.h
+++ b/Source/core/svg/SVGStaticStringList.h
@@ -40,7 +40,7 @@ class SVGElement;
// SVGStringList property implementations for SVGTests properties.
// Inherits SVGAnimatedPropertyBase to enable XML attribute synchronization, but this is never animated.
-class SVGStaticStringList FINAL : public SVGAnimatedPropertyBase {
+class SVGStaticStringList final : public SVGAnimatedPropertyBase {
public:
static PassRefPtr<SVGStaticStringList> create(SVGElement* contextElement, const QualifiedName& attributeName)
{
@@ -50,12 +50,12 @@ public:
virtual ~SVGStaticStringList();
// SVGAnimatedPropertyBase:
- virtual SVGPropertyBase* currentValueBase() OVERRIDE;
- virtual bool isAnimating() const OVERRIDE;
- virtual PassRefPtr<SVGPropertyBase> createAnimatedValue() OVERRIDE;
- virtual void setAnimatedValue(PassRefPtr<SVGPropertyBase>) OVERRIDE;
- virtual void animationEnded() OVERRIDE;
- virtual bool needsSynchronizeAttribute() OVERRIDE;
+ virtual SVGPropertyBase* currentValueBase() override;
+ virtual bool isAnimating() const override;
+ virtual PassRefPtr<SVGPropertyBase> createAnimatedValue() override;
+ virtual void setAnimatedValue(PassRefPtr<SVGPropertyBase>) override;
+ virtual void animationEnded() override;
+ virtual bool needsSynchronizeAttribute() override;
void setBaseValueAsString(const String& value, SVGParsingError& parseError);
« no previous file with comments | « Source/core/svg/SVGSetElement.h ('k') | Source/core/svg/SVGStopElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698