| Index: Source/core/svg/SVGPointList.h
|
| diff --git a/Source/core/svg/SVGPointList.h b/Source/core/svg/SVGPointList.h
|
| index 63c27ce86242987bf439ad6ea28832c3f96c6e05..6b0eb72069955433dc1aa8137accd2e543018fb8 100644
|
| --- a/Source/core/svg/SVGPointList.h
|
| +++ b/Source/core/svg/SVGPointList.h
|
| @@ -48,16 +48,16 @@ public:
|
| return adoptRefWillBeNoop(new SVGPointList());
|
| }
|
|
|
| - virtual ~SVGPointList();
|
| + ~SVGPointList() override;
|
|
|
| void setValueAsString(const String&, ExceptionState&);
|
|
|
| // SVGPropertyBase:
|
| - virtual String valueAsString() const override;
|
| + String valueAsString() const override;
|
|
|
| - virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
|
| - virtual void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> fromValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) override;
|
| - virtual float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGElement*) override;
|
| + void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
|
| + void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> fromValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) override;
|
| + float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGElement*) override;
|
|
|
| static AnimatedPropertyType classType() { return AnimatedPoints; }
|
|
|
|
|