| Index: third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| index 36fe681895b06d2b0890246c47a60916ee30af03..521bbe9c014e3b874b643436bc7853674b8778e1 100644
|
| --- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| +++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| @@ -42,15 +42,18 @@
|
|
|
| namespace blink {
|
|
|
| -class InspectorBackendDispatcher;
|
| -class InspectorFrontend;
|
| -class InspectorFrontendChannel;
|
| class InstrumentingAgents;
|
| class WorkerDebuggerAgent;
|
| class WorkerGlobalScope;
|
| class WorkerRuntimeAgent;
|
| class WorkerThreadDebugger;
|
|
|
| +namespace protocol {
|
| +class Dispatcher;
|
| +class Frontend;
|
| +class FrontendChannel;
|
| +}
|
| +
|
| class WorkerInspectorController final : public RefCountedWillBeGarbageCollectedFinalized<WorkerInspectorController>, public InspectorRuntimeAgent::Client {
|
| WTF_MAKE_NONCOPYABLE(WorkerInspectorController);
|
| USING_FAST_MALLOC_WILL_BE_REMOVED(WorkerInspectorController);
|
| @@ -80,15 +83,15 @@ private:
|
| class PageInspectorProxy;
|
| friend WTF::OwnedPtrDeleter<PageInspectorProxy>;
|
|
|
| - InspectorFrontendChannel* frontendChannel() const;
|
| + protocol::FrontendChannel* frontendChannel() const;
|
|
|
| RawPtrWillBeMember<WorkerGlobalScope> m_workerGlobalScope;
|
| RefPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
|
| WorkerThreadDebugger* m_workerThreadDebugger;
|
| InspectorAgentRegistry m_agents;
|
| OwnPtrWillBeMember<PageInspectorProxy> m_pageInspectorProxy;
|
| - OwnPtr<InspectorFrontend> m_frontend;
|
| - RefPtr<InspectorBackendDispatcher> m_backendDispatcher;
|
| + OwnPtr<protocol::Frontend> m_frontend;
|
| + RefPtr<protocol::Dispatcher> m_backendDispatcher;
|
| RawPtrWillBeMember<WorkerDebuggerAgent> m_workerDebuggerAgent;
|
| RawPtrWillBeMember<WorkerRuntimeAgent> m_workerRuntimeAgent;
|
| OwnPtr<InspectorTaskRunner> m_inspectorTaskRunner;
|
|
|