| 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 95dc8a4aeb077a71144b9b6f3d457dacf392ceb9..91a4ed0de608b4a1956c7190234cd86770b75b03 100644
|
| --- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| +++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| @@ -54,7 +54,7 @@ class Frontend;
|
| class FrontendChannel;
|
| }
|
|
|
| -class WorkerInspectorController final : public GarbageCollectedFinalized<WorkerInspectorController>, public InspectorRuntimeAgent::Client, public InspectorSession::Client {
|
| +class WorkerInspectorController final : public GarbageCollectedFinalized<WorkerInspectorController>, public InspectorSession::Client {
|
| WTF_MAKE_NONCOPYABLE(WorkerInspectorController);
|
| public:
|
| static WorkerInspectorController* create(WorkerGlobalScope*);
|
| @@ -71,11 +71,9 @@ public:
|
| private:
|
| WorkerInspectorController(WorkerGlobalScope*, WorkerThreadDebugger*);
|
|
|
| - // InspectorRuntimeAgent::Client implementation.
|
| - void resumeStartup() override;
|
| -
|
| // InspectorSession::Client implementation.
|
| void sendProtocolMessage(int sessionId, int callId, const String& response, const String& state) override;
|
| + void resumeStartup() override;
|
|
|
| WorkerThreadDebugger* m_debugger;
|
| Member<WorkerGlobalScope> m_workerGlobalScope;
|
|
|