| Index: Source/core/svg/SVGAngle.h
|
| diff --git a/Source/core/svg/SVGAngle.h b/Source/core/svg/SVGAngle.h
|
| index 9b38552e37ca414e8573ed7d0a9c92a652ff60b8..2527847db514d0da939a513cac6c0a0299039f4b 100644
|
| --- a/Source/core/svg/SVGAngle.h
|
| +++ b/Source/core/svg/SVGAngle.h
|
| @@ -48,14 +48,14 @@ public:
|
|
|
| virtual ~SVGMarkerOrientEnumeration();
|
|
|
| - virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
|
| - virtual void calculateAnimatedValue(SVGAnimationElement*, float, unsigned, PassRefPtr<SVGPropertyBase>, PassRefPtr<SVGPropertyBase>, PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
|
| - virtual float calculateDistance(PassRefPtr<SVGPropertyBase>, SVGElement*) OVERRIDE;
|
| + virtual void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
|
| + virtual void calculateAnimatedValue(SVGAnimationElement*, float, unsigned, PassRefPtr<SVGPropertyBase>, PassRefPtr<SVGPropertyBase>, PassRefPtr<SVGPropertyBase>, SVGElement*) override;
|
| + virtual float calculateDistance(PassRefPtr<SVGPropertyBase>, SVGElement*) override;
|
|
|
| private:
|
| SVGMarkerOrientEnumeration(SVGAngle*);
|
|
|
| - virtual void notifyChange() OVERRIDE;
|
| + virtual void notifyChange() override;
|
|
|
| // FIXME: oilpan: This is kept as raw-ptr to avoid reference cycles. Should be Member in oilpan.
|
| SVGAngle* m_angle;
|
| @@ -99,12 +99,12 @@ public:
|
|
|
| PassRefPtr<SVGAngle> clone() const;
|
|
|
| - virtual String valueAsString() const OVERRIDE;
|
| + virtual String valueAsString() const override;
|
| void setValueAsString(const String&, ExceptionState&);
|
|
|
| - 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* contextElement) OVERRIDE;
|
| - virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement* contextElement) 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* contextElement) override;
|
| + virtual float calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement* contextElement) override;
|
|
|
| static AnimatedPropertyType classType() { return AnimatedAngle; }
|
|
|
|
|