Index: Source/modules/websockets/CloseEvent.h |
diff --git a/Source/modules/websockets/CloseEvent.h b/Source/modules/websockets/CloseEvent.h |
index 3debdacbeb6e5fcf68473217fe13b61a6d56d82b..6283d997fd1869b9f0fdfecdf85120c216bb4c58 100644 |
--- a/Source/modules/websockets/CloseEvent.h |
+++ b/Source/modules/websockets/CloseEvent.h |
@@ -45,7 +45,7 @@ struct CloseEventInit : public EventInit { |
String reason; |
}; |
-class CloseEvent FINAL : public Event { |
+class CloseEvent final : public Event { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
static PassRefPtrWillBeRawPtr<CloseEvent> create() |
@@ -68,9 +68,9 @@ public: |
String reason() const { return m_reason; } |
// Event function. |
- virtual const AtomicString& interfaceName() const OVERRIDE { return EventNames::CloseEvent; } |
+ virtual const AtomicString& interfaceName() const override { return EventNames::CloseEvent; } |
- virtual void trace(Visitor* visitor) OVERRIDE { Event::trace(visitor); } |
+ virtual void trace(Visitor* visitor) override { Event::trace(visitor); } |
private: |
CloseEvent() |