Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3202)

Unified Diff: Source/core/workers/SharedWorker.h

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/workers/DedicatedWorkerThread.h ('k') | Source/core/workers/SharedWorkerGlobalScope.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « Source/core/workers/DedicatedWorkerThread.h ('k') | Source/core/workers/SharedWorkerGlobalScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698