| Index: Source/core/svg/SVGDiscardElement.h
|
| diff --git a/Source/core/svg/SVGDiscardElement.h b/Source/core/svg/SVGDiscardElement.h
|
| index 6c1821243b9c48280181ff06395be3afa04b06ff..76b61d8cc55381b4fcaddc4303bdc5e3aee7c0be 100644
|
| --- a/Source/core/svg/SVGDiscardElement.h
|
| +++ b/Source/core/svg/SVGDiscardElement.h
|
| @@ -40,19 +40,19 @@ class SVGDiscardElement final : public SVGSMILElement {
|
| public:
|
| DECLARE_NODE_FACTORY(SVGDiscardElement);
|
|
|
| - virtual bool isSVGDiscardElement() const override { return true; }
|
| + bool isSVGDiscardElement() const override { return true; }
|
| private:
|
| explicit SVGDiscardElement(Document&);
|
|
|
| - virtual void resetAnimatedType() override { }
|
| - virtual void clearAnimatedType() override { }
|
| - virtual void applyResultsToTarget() override { }
|
| - virtual bool hasValidAttributeType() override;
|
| - virtual bool hasValidAttributeName() override;
|
| - virtual void animationAttributeChanged() override { }
|
| + void resetAnimatedType() override { }
|
| + void clearAnimatedType() override { }
|
| + void applyResultsToTarget() override { }
|
| + bool hasValidAttributeType() override;
|
| + bool hasValidAttributeName() override;
|
| + void animationAttributeChanged() override { }
|
|
|
| - virtual void startedActiveInterval() override { }
|
| - virtual void updateAnimation(float percent, unsigned repeat, SVGSMILElement* resultElement) override { }
|
| + void startedActiveInterval() override { }
|
| + void updateAnimation(float percent, unsigned repeat, SVGSMILElement* resultElement) override { }
|
| };
|
|
|
| } // namespace blink
|
|
|