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

Unified Diff: Source/core/svg/SVGStringList.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/SVGString.h ('k') | Source/core/svg/SVGStyleElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGStringList.h
diff --git a/Source/core/svg/SVGStringList.h b/Source/core/svg/SVGStringList.h
index 13b836849b1ee48b1d7e65a9aca5cc61d4e64c0e..8cfcd17c9296dd10b5f8169b0a7c4704b085ff5a 100644
--- a/Source/core/svg/SVGStringList.h
+++ b/Source/core/svg/SVGStringList.h
@@ -50,7 +50,7 @@ class SVGStringListTearOff;
// SVGStringList items are exposed to Javascript as DOMString (not SVGString) as in the spec.
// SVGString is used only for boxing values for non-list string property SVGAnimatedString,
// and not used for SVGStringList.
-class SVGStringList FINAL : public SVGPropertyHelper<SVGStringList> {
+class SVGStringList final : public SVGPropertyHelper<SVGStringList> {
public:
typedef SVGStringListTearOff TearOffType;
@@ -75,11 +75,11 @@ public:
// SVGPropertyBase:
void setValueAsString(const String&, ExceptionState&);
- virtual String valueAsString() const OVERRIDE;
+ virtual String valueAsString() const override;
- virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
- virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) OVERRIDE;
- virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) OVERRIDE;
+ virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
+ virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) override;
+ virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) override;
static AnimatedPropertyType classType() { return AnimatedStringList; }
« no previous file with comments | « Source/core/svg/SVGString.h ('k') | Source/core/svg/SVGStyleElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698