| Index: Source/core/svg/SVGBoolean.h
|
| diff --git a/Source/core/svg/SVGBoolean.h b/Source/core/svg/SVGBoolean.h
|
| index 8d1f7856d585ec19503d459cf8e097bf2d73b91d..ed8b8746449653351cbf7b313da157ba51ee783e 100644
|
| --- a/Source/core/svg/SVGBoolean.h
|
| +++ b/Source/core/svg/SVGBoolean.h
|
| @@ -48,12 +48,12 @@ public:
|
|
|
| PassRefPtr<SVGBoolean> clone() const { return create(m_value); }
|
|
|
| - 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*) 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;
|
|
|
| bool value() const { return m_value; }
|
| void setValue(bool value) { m_value = value; }
|
|
|