| Index: Source/core/events/WebKitAnimationEvent.h
|
| diff --git a/Source/core/events/WebKitAnimationEvent.h b/Source/core/events/WebKitAnimationEvent.h
|
| index f4406d9ad8f7cdb31a118742fb2a94ec3dd76c20..f851207fb335ac1f31f4cb4721820dc1d5e6e53e 100644
|
| --- a/Source/core/events/WebKitAnimationEvent.h
|
| +++ b/Source/core/events/WebKitAnimationEvent.h
|
| @@ -40,7 +40,7 @@ struct WebKitAnimationEventInit : public EventInit {
|
| double elapsedTime;
|
| };
|
|
|
| -class WebKitAnimationEvent FINAL : public Event {
|
| +class WebKitAnimationEvent final : public Event {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static PassRefPtrWillBeRawPtr<WebKitAnimationEvent> create()
|
| @@ -61,9 +61,9 @@ public:
|
| const String& animationName() const;
|
| double elapsedTime() const;
|
|
|
| - virtual const AtomicString& interfaceName() const OVERRIDE;
|
| + virtual const AtomicString& interfaceName() const override;
|
|
|
| - virtual void trace(Visitor*) OVERRIDE;
|
| + virtual void trace(Visitor*) override;
|
|
|
| private:
|
| WebKitAnimationEvent();
|
|
|