| Index: third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp b/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
|
| index ac85e3f98d49f9bad4722e66f9558816d35a2b55..1382ae7b360f8f9dc89a3c56e081af1fbe859c3d 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
|
| @@ -9,6 +9,7 @@
|
| #include "bindings/core/v8/V8IdleTaskRunner.h"
|
| #include "bindings/core/v8/V8Initializer.h"
|
| #include "bindings/core/v8/V8PerIsolateData.h"
|
| +#include "core/inspector/WorkerThreadDebugger.h"
|
| #include "platform/CrossThreadFunctional.h"
|
| #include "platform/RuntimeEnabledFeatures.h"
|
| #include "platform/WebThreadSupportingGC.h"
|
| @@ -78,6 +79,9 @@ void WorkerBackingThread::initialize() {
|
| backingThread().platformThread().scheduler())));
|
| if (m_isOwningThread)
|
| Platform::current()->didStartWorkerThread();
|
| +
|
| + V8PerIsolateData::from(m_isolate)->setThreadDebugger(
|
| + wrapUnique(new WorkerThreadDebugger(m_isolate)));
|
| }
|
|
|
| void WorkerBackingThread::shutdown() {
|
|
|