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

Unified Diff: Source/core/workers/AbstractWorker.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/timing/WorkerPerformance.h ('k') | Source/core/workers/DedicatedWorkerGlobalScope.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/AbstractWorker.h
diff --git a/Source/core/workers/AbstractWorker.h b/Source/core/workers/AbstractWorker.h
index 6231b9f1853c4da6880b2ad1c5f236a603e33e46..91be9b5eda0abe12e65ae7e701a263e3aad9ad6d 100644
--- a/Source/core/workers/AbstractWorker.h
+++ b/Source/core/workers/AbstractWorker.h
@@ -52,12 +52,12 @@ class CORE_EXPORT AbstractWorker : public EventTargetWithInlineData, public RefC
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(AbstractWorker);
public:
// EventTarget APIs
- virtual ExecutionContext* executionContext() const override final { return ActiveDOMObject::executionContext(); }
+ ExecutionContext* executionContext() const final { return ActiveDOMObject::executionContext(); }
DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(error);
AbstractWorker(ExecutionContext*);
- virtual ~AbstractWorker();
+ ~AbstractWorker() override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/core/timing/WorkerPerformance.h ('k') | Source/core/workers/DedicatedWorkerGlobalScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698