| Index: Source/core/workers/SharedWorker.h
|
| diff --git a/Source/core/workers/SharedWorker.h b/Source/core/workers/SharedWorker.h
|
| index 02355e8fb356961447c82f91de3f235fbf18afdb..8be42c43819e13cf4aad3b4514875cdf2ec296f6 100644
|
| --- a/Source/core/workers/SharedWorker.h
|
| +++ b/Source/core/workers/SharedWorker.h
|
| @@ -46,15 +46,15 @@ class CORE_EXPORT SharedWorker final : public AbstractWorker, public WillBeHeapS
|
| WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SharedWorker);
|
| public:
|
| static PassRefPtrWillBeRawPtr<SharedWorker> create(ExecutionContext*, const String& url, const String& name, ExceptionState&);
|
| - virtual ~SharedWorker();
|
| + ~SharedWorker() override;
|
|
|
| MessagePort* port() const { return m_port.get(); }
|
|
|
| - virtual const AtomicString& interfaceName() const override;
|
| + const AtomicString& interfaceName() const override;
|
|
|
| void setIsBeingConnected(bool b) { m_isBeingConnected = b; }
|
|
|
| - virtual bool hasPendingActivity() const override;
|
| + bool hasPendingActivity() const override;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
|
|