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; } |