Index: Source/core/workers/SharedWorker.h |
diff --git a/Source/core/workers/SharedWorker.h b/Source/core/workers/SharedWorker.h |
index 557eecebd6d44fdcc30ff300c6eddc559cc95171..95c9ef6dee6021cbba7a33ded333548f42b55794 100644 |
--- a/Source/core/workers/SharedWorker.h |
+++ b/Source/core/workers/SharedWorker.h |
@@ -40,7 +40,7 @@ namespace blink { |
class ExceptionState; |
-class SharedWorker FINAL : public AbstractWorker, public WillBeHeapSupplementable<SharedWorker> { |
+class SharedWorker final : public AbstractWorker, public WillBeHeapSupplementable<SharedWorker> { |
DEFINE_WRAPPERTYPEINFO(); |
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SharedWorker); |
public: |
@@ -49,13 +49,13 @@ public: |
MessagePort* port() const { return m_port.get(); } |
- virtual const AtomicString& interfaceName() const OVERRIDE; |
+ virtual const AtomicString& interfaceName() const override; |
void setIsBeingConnected(bool b) { m_isBeingConnected = b; } |
- virtual bool hasPendingActivity() const OVERRIDE; |
+ virtual bool hasPendingActivity() const override; |
- virtual void trace(Visitor*) OVERRIDE; |
+ virtual void trace(Visitor*) override; |
private: |
explicit SharedWorker(ExecutionContext*); |