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

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

Issue 631133003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/workers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/AbstractWorker.h ('k') | Source/core/workers/DedicatedWorkerGlobalScope.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/DedicatedWorkerGlobalScope.h
diff --git a/Source/core/workers/DedicatedWorkerGlobalScope.h b/Source/core/workers/DedicatedWorkerGlobalScope.h
index 4c1262b490da9adf777c5d38d5e8879b6651f9d7..9d30a489aa15bd2a2ed3a69e50da7dea47666b9f 100644
--- a/Source/core/workers/DedicatedWorkerGlobalScope.h
+++ b/Source/core/workers/DedicatedWorkerGlobalScope.h
@@ -41,22 +41,22 @@ namespace blink {
class DedicatedWorkerThread;
class WorkerThreadStartupData;
-class DedicatedWorkerGlobalScope FINAL : public WorkerGlobalScope {
+class DedicatedWorkerGlobalScope final : public WorkerGlobalScope {
DEFINE_WRAPPERTYPEINFO();
public:
typedef WorkerGlobalScope Base;
static PassRefPtrWillBeRawPtr<DedicatedWorkerGlobalScope> create(DedicatedWorkerThread*, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>, double timeOrigin);
virtual ~DedicatedWorkerGlobalScope();
- virtual bool isDedicatedWorkerGlobalScope() const OVERRIDE { return true; }
- virtual void countFeature(UseCounter::Feature) const OVERRIDE;
- virtual void countDeprecation(UseCounter::Feature) const OVERRIDE;
+ virtual bool isDedicatedWorkerGlobalScope() const override { return true; }
+ virtual void countFeature(UseCounter::Feature) const override;
+ virtual void countDeprecation(UseCounter::Feature) const override;
// Overridden to allow us to check our pending activity after executing imported script.
- virtual void importScripts(const Vector<String>& urls, ExceptionState&) OVERRIDE;
+ virtual void importScripts(const Vector<String>& urls, ExceptionState&) override;
// EventTarget
- virtual const AtomicString& interfaceName() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
void postMessage(ExecutionContext*, PassRefPtr<SerializedScriptValue>, const MessagePortArray*, ExceptionState&);
@@ -64,7 +64,7 @@ public:
DedicatedWorkerThread* thread() const;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
DedicatedWorkerGlobalScope(const KURL&, const String& userAgent, DedicatedWorkerThread*, double timeOrigin, const SecurityOrigin*, PassOwnPtrWillBeRawPtr<WorkerClients>);
« no previous file with comments | « Source/core/workers/AbstractWorker.h ('k') | Source/core/workers/DedicatedWorkerGlobalScope.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698