| Index: third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
|
| index 5b1a80933b4fcc1f21ddce3d7881c750c26c436a..730629ef43083be0dc4687d3747f66243a1476df 100644
|
| --- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
|
| @@ -32,11 +32,14 @@
|
|
|
| #include "core/CoreProbeSink.h"
|
| #include "core/inspector/InspectorLogAgent.h"
|
| +#include "core/inspector/InspectorNetworkAgent.h"
|
| #include "core/inspector/InspectorTraceEvents.h"
|
| #include "core/inspector/WorkerThreadDebugger.h"
|
| #include "core/inspector/protocol/Protocol.h"
|
| +#include "core/loader/WorkerFetchContext.h"
|
| #include "core/probe/CoreProbes.h"
|
| #include "core/workers/WorkerBackingThread.h"
|
| +#include "core/workers/WorkerGlobalScope.h"
|
| #include "core/workers/WorkerReportingProxy.h"
|
| #include "core/workers/WorkerThread.h"
|
| #include "platform/WebThreadSupportingGC.h"
|
| @@ -74,6 +77,13 @@ void WorkerInspectorController::ConnectFrontend() {
|
| debugger_->ContextGroupId(thread_), nullptr);
|
| session_->Append(
|
| new InspectorLogAgent(thread_->GetConsoleMessageStorage(), nullptr));
|
| + if (thread_->GlobalScope()->IsWorkerGlobalScope()) {
|
| + WorkerFetchContext* worker_fetch_contrext =
|
| + ToWorkerGlobalScope(thread_->GlobalScope())->GetFetchContext();
|
| + if (worker_fetch_contrext) {
|
| + session_->Append(InspectorNetworkAgent::Create(nullptr));
|
| + }
|
| + }
|
| thread_->GetWorkerBackingThread().BackingThread().AddTaskObserver(this);
|
| }
|
|
|
|
|