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