| Index: Source/core/animation/Animation.h
|
| diff --git a/Source/core/animation/Animation.h b/Source/core/animation/Animation.h
|
| index 3478eb7adcc9e703fc57579a7e730df83c0aaf8d..88335cd477fda3e66804440c2f12fb715867b156 100644
|
| --- a/Source/core/animation/Animation.h
|
| +++ b/Source/core/animation/Animation.h
|
| @@ -110,11 +110,11 @@ public:
|
|
|
| DEFINE_ATTRIBUTE_EVENT_LISTENER(finish);
|
|
|
| - virtual const AtomicString& interfaceName() const override;
|
| - virtual ExecutionContext* executionContext() const override;
|
| - virtual bool hasPendingActivity() const override;
|
| - virtual void stop() override;
|
| - virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) override;
|
| + const AtomicString& interfaceName() const override;
|
| + ExecutionContext* executionContext() const override;
|
| + bool hasPendingActivity() const override;
|
| + void stop() override;
|
| + bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) override;
|
|
|
| double playbackRate() const;
|
| void setPlaybackRate(double);
|
| @@ -177,7 +177,7 @@ public:
|
| return animation1->sequenceNumber() < animation2->sequenceNumber();
|
| }
|
|
|
| - virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override;
|
| + bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
|
|