| Index: Source/core/svg/SVGString.h
|
| diff --git a/Source/core/svg/SVGString.h b/Source/core/svg/SVGString.h
|
| index b8fa8e144392622bdf6d32b0fa01c8f85b5754c1..f686bd953f36b0b573ed3b8ba2c3d1d2475a4df5 100644
|
| --- a/Source/core/svg/SVGString.h
|
| +++ b/Source/core/svg/SVGString.h
|
| @@ -54,17 +54,17 @@ public:
|
| }
|
|
|
| PassRefPtr<SVGString> clone() const { return create(m_value); }
|
| - virtual PassRefPtr<SVGPropertyBase> cloneForAnimation(const String& value) const OVERRIDE
|
| + virtual PassRefPtr<SVGPropertyBase> cloneForAnimation(const String& value) const override
|
| {
|
| return create(value);
|
| }
|
|
|
| - virtual String valueAsString() const OVERRIDE { return m_value; }
|
| + virtual String valueAsString() const override { return m_value; }
|
| void setValueAsString(const String& value, ExceptionState&) { m_value = value; }
|
|
|
| - virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
|
| - virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, 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> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) override;
|
| + virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement*) override;
|
|
|
| const String& value() const { return m_value; }
|
| void setValue(const String& value) { m_value = value; }
|
|
|