| Index: Source/core/inspector/WorkerDebuggerAgent.cpp
 | 
| diff --git a/Source/core/inspector/WorkerDebuggerAgent.cpp b/Source/core/inspector/WorkerDebuggerAgent.cpp
 | 
| index 88f4b9c2166b8f1937bd1be610b1351b6109dc95..e18a9e25c9fe5c9e09a7c4094ac10e3a34a086cc 100644
 | 
| --- a/Source/core/inspector/WorkerDebuggerAgent.cpp
 | 
| +++ b/Source/core/inspector/WorkerDebuggerAgent.cpp
 | 
| @@ -41,12 +41,12 @@ namespace blink {
 | 
|  
 | 
|  namespace {
 | 
|  
 | 
| -class RunInspectorCommandsTask FINAL : public ScriptDebugServer::Task {
 | 
| +class RunInspectorCommandsTask final : public ScriptDebugServer::Task {
 | 
|  public:
 | 
|      explicit RunInspectorCommandsTask(WorkerThread* thread)
 | 
|          : m_thread(thread) { }
 | 
|      virtual ~RunInspectorCommandsTask() { }
 | 
| -    virtual void run() OVERRIDE
 | 
| +    virtual void run() override
 | 
|      {
 | 
|          // Process all queued debugger commands. WorkerThread is certainly
 | 
|          // alive if this task is being executed.
 | 
| 
 |