| Index: Source/core/inspector/WorkerDebuggerAgent.h
 | 
| diff --git a/Source/core/inspector/WorkerDebuggerAgent.h b/Source/core/inspector/WorkerDebuggerAgent.h
 | 
| index 4a82218210fd9d28b02aed545a600b728ec156e0..2642831fea6ce96dee5087fa26663f05ea03de44 100644
 | 
| --- a/Source/core/inspector/WorkerDebuggerAgent.h
 | 
| +++ b/Source/core/inspector/WorkerDebuggerAgent.h
 | 
| @@ -40,13 +40,13 @@ class WorkerGlobalScope;
 | 
|  class WorkerThread;
 | 
|  class WorkerDebuggerAgent;
 | 
|  
 | 
| -class WorkerDebuggerAgent FINAL : public InspectorDebuggerAgent {
 | 
| +class WorkerDebuggerAgent final : public InspectorDebuggerAgent {
 | 
|      WTF_MAKE_NONCOPYABLE(WorkerDebuggerAgent);
 | 
|      WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
 | 
|  public:
 | 
|      static PassOwnPtrWillBeRawPtr<WorkerDebuggerAgent> create(WorkerScriptDebugServer*, WorkerGlobalScope*, InjectedScriptManager*);
 | 
|      virtual ~WorkerDebuggerAgent();
 | 
| -    virtual void trace(Visitor*) OVERRIDE;
 | 
| +    virtual void trace(Visitor*) override;
 | 
|  
 | 
|      void interruptAndDispatchInspectorCommands();
 | 
|  
 | 
| @@ -54,12 +54,12 @@ private:
 | 
|  
 | 
|      WorkerDebuggerAgent(WorkerScriptDebugServer*, WorkerGlobalScope*, InjectedScriptManager*);
 | 
|  
 | 
| -    virtual void startListeningScriptDebugServer() OVERRIDE;
 | 
| -    virtual void stopListeningScriptDebugServer() OVERRIDE;
 | 
| -    virtual WorkerScriptDebugServer& scriptDebugServer() OVERRIDE;
 | 
| -    virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) OVERRIDE;
 | 
| -    virtual void muteConsole() OVERRIDE;
 | 
| -    virtual void unmuteConsole() OVERRIDE;
 | 
| +    virtual void startListeningScriptDebugServer() override;
 | 
| +    virtual void stopListeningScriptDebugServer() override;
 | 
| +    virtual WorkerScriptDebugServer& scriptDebugServer() override;
 | 
| +    virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
 | 
| +    virtual void muteConsole() override;
 | 
| +    virtual void unmuteConsole() override;
 | 
|  
 | 
|      WorkerScriptDebugServer* m_scriptDebugServer;
 | 
|      RawPtrWillBeMember<WorkerGlobalScope> m_inspectedWorkerGlobalScope;
 | 
| 
 |