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

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

Issue 134213006: Update worker classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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
Index: Source/core/workers/AbstractWorker.h
diff --git a/Source/core/workers/AbstractWorker.h b/Source/core/workers/AbstractWorker.h
index 775f2e6ac4ecf0b15725f22e17854e68b32e9fd3..3171627041bb471a8d6ee10c4dbc96d6f022f792 100644
--- a/Source/core/workers/AbstractWorker.h
+++ b/Source/core/workers/AbstractWorker.h
@@ -51,7 +51,7 @@ class AbstractWorker : public RefCounted<AbstractWorker>, public EventTargetWith
REFCOUNTED_EVENT_TARGET(AbstractWorker);
public:
// EventTarget APIs
- virtual ExecutionContext* executionContext() const OVERRIDE { return ActiveDOMObject::executionContext(); }
+ virtual ExecutionContext* executionContext() const OVERRIDE FINAL { return ActiveDOMObject::executionContext(); }
DEFINE_ATTRIBUTE_EVENT_LISTENER(error);
« no previous file with comments | « no previous file | Source/core/workers/DedicatedWorkerGlobalScope.h » ('j') | Source/core/workers/WorkerObjectProxy.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698