| Index: third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| index bf90eb241dafaf389c852fec8ae7c3d13dbfd3a8..27afa603354dee14b315caa21864f0da73213e91 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| @@ -20,6 +20,7 @@ namespace blink {
|
|
|
| class InjectedScript;
|
| class RemoteObjectIdBase;
|
| +class V8ConsoleAgentImpl;
|
| class V8DebuggerAgentImpl;
|
| class V8DebuggerImpl;
|
| class V8HeapProfilerAgentImpl;
|
| @@ -34,6 +35,7 @@ public:
|
|
|
| V8DebuggerImpl* debugger() const { return m_debugger; }
|
| V8InspectorSessionClient* client() const { return m_client; }
|
| + V8ConsoleAgentImpl* consoleAgent() { return m_consoleAgent.get(); }
|
| V8DebuggerAgentImpl* debuggerAgent() { return m_debuggerAgent.get(); }
|
| V8ProfilerAgentImpl* profilerAgent() { return m_profilerAgent.get(); }
|
| V8RuntimeAgentImpl* runtimeAgent() { return m_runtimeAgent.get(); }
|
| @@ -88,6 +90,7 @@ private:
|
| std::unique_ptr<V8DebuggerAgentImpl> m_debuggerAgent;
|
| std::unique_ptr<V8HeapProfilerAgentImpl> m_heapProfilerAgent;
|
| std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent;
|
| + std::unique_ptr<V8ConsoleAgentImpl> m_consoleAgent;
|
| protocol::Vector<std::unique_ptr<V8InspectorSession::Inspectable>> m_inspectedObjects;
|
| };
|
|
|
|
|