| 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 3e0fcb3006d95b94480f54cdca54325119f66068..845901ebf366d820ee14f34c855520bd38e1102b 100644
|
| --- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| +++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
|
| @@ -40,6 +40,7 @@
|
|
|
| namespace blink {
|
|
|
| +class InspectorLogAgent;
|
| class InstrumentingAgents;
|
| class V8Debugger;
|
| class WorkerGlobalScope;
|
| @@ -71,11 +72,13 @@ private:
|
| // InspectorSession::Client implementation.
|
| void sendProtocolMessage(int sessionId, int callId, const String& response, const String& state) override;
|
| void resumeStartup() override;
|
| + void consoleCleared() override;
|
|
|
| WorkerThreadDebugger* m_debugger;
|
| Member<WorkerGlobalScope> m_workerGlobalScope;
|
| Member<InstrumentingAgents> m_instrumentingAgents;
|
| Member<InspectorSession> m_session;
|
| + Member<InspectorLogAgent> m_logAgent;
|
| };
|
|
|
| } // namespace blink
|
|
|