Index: Source/core/workers/SharedWorkerGlobalScope.h |
diff --git a/Source/core/workers/SharedWorkerGlobalScope.h b/Source/core/workers/SharedWorkerGlobalScope.h |
index b8119d111d8cb47eed92aaff9747df85bf21e64b..201e4f3b50c961f3feffcc71ac0d570b14d1026d 100644 |
--- a/Source/core/workers/SharedWorkerGlobalScope.h |
+++ b/Source/core/workers/SharedWorkerGlobalScope.h |
@@ -41,17 +41,17 @@ namespace blink { |
class MessageEvent; |
class SharedWorkerThread; |
-class SharedWorkerGlobalScope FINAL : public WorkerGlobalScope { |
+class SharedWorkerGlobalScope final : public WorkerGlobalScope { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
typedef WorkerGlobalScope Base; |
static PassRefPtrWillBeRawPtr<SharedWorkerGlobalScope> create(const String& name, SharedWorkerThread*, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>); |
virtual ~SharedWorkerGlobalScope(); |
- virtual bool isSharedWorkerGlobalScope() const OVERRIDE { return true; } |
+ virtual bool isSharedWorkerGlobalScope() const override { return true; } |
// EventTarget |
- virtual const AtomicString& interfaceName() const OVERRIDE; |
+ virtual const AtomicString& interfaceName() const override; |
// Setters/Getters for attributes in SharedWorkerGlobalScope.idl |
DEFINE_ATTRIBUTE_EVENT_LISTENER(connect); |
@@ -59,11 +59,11 @@ public: |
SharedWorkerThread* thread(); |
- virtual void trace(Visitor*) OVERRIDE; |
+ virtual void trace(Visitor*) override; |
private: |
SharedWorkerGlobalScope(const String& name, const KURL&, const String& userAgent, SharedWorkerThread*, const SecurityOrigin*, PassOwnPtrWillBeRawPtr<WorkerClients>); |
- virtual void logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack>) OVERRIDE; |
+ virtual void logExceptionToConsole(const String& errorMessage, int scriptId, const String& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<ScriptCallStack>) override; |
String m_name; |
}; |