| Index: Source/core/inspector/WorkerDebuggerAgent.cpp
|
| diff --git a/Source/core/inspector/WorkerDebuggerAgent.cpp b/Source/core/inspector/WorkerDebuggerAgent.cpp
|
| index 271c306e1569a56f7e3d4df2a0c7ce49e248bedb..b30909f4b27da0fd690bb617a396e6fd602de8dc 100644
|
| --- a/Source/core/inspector/WorkerDebuggerAgent.cpp
|
| +++ b/Source/core/inspector/WorkerDebuggerAgent.cpp
|
| @@ -55,13 +55,13 @@ WorkerDebuggerAgents& workerDebuggerAgents()
|
| }
|
|
|
|
|
| -class RunInspectorCommandsTask : public ScriptDebugServer::Task {
|
| +class RunInspectorCommandsTask FINAL : public ScriptDebugServer::Task {
|
| public:
|
| RunInspectorCommandsTask(WorkerThread* thread, WorkerGlobalScope* workerGlobalScope)
|
| : m_thread(thread)
|
| , m_workerGlobalScope(workerGlobalScope) { }
|
| virtual ~RunInspectorCommandsTask() { }
|
| - virtual void run()
|
| + virtual void run() OVERRIDE
|
| {
|
| // Process all queued debugger commands. It is safe to use m_workerGlobalScope here
|
| // because it is alive if RunWorkerLoop is not terminated, otherwise it will
|
|
|