| 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 a1ec646a0e6bfb9f285b5ae69c1624533f5441a8..237e6d969ef871d7a2d458ceef7a9ac3fc04c7bf 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| @@ -37,6 +37,7 @@ public:
|
|
|
| V8DebuggerImpl* debugger() const { return m_debugger; }
|
| V8DebuggerAgentImpl* debuggerAgentImpl() { return m_debuggerAgent.get(); }
|
| + V8RuntimeAgentImpl* runtimeAgentImpl() { return m_runtimeAgent.get(); }
|
| int contextGroupId() const { return m_contextGroupId; }
|
|
|
| InjectedScript* findInjectedScript(ErrorString*, int contextId);
|
| @@ -55,8 +56,6 @@ public:
|
|
|
| void setClearConsoleCallback(PassOwnPtr<V8RuntimeAgent::ClearConsoleCallback> callback) { m_clearConsoleCallback = callback; }
|
| V8RuntimeAgent::ClearConsoleCallback* clearConsoleCallback() { return m_clearConsoleCallback.get(); }
|
| - void setInspectObjectCallback(PassOwnPtr<V8RuntimeAgent::InspectCallback> callback) { m_inspectCallback = callback; }
|
| - V8RuntimeAgent::InspectCallback* inspectCallback() { return m_inspectCallback.get(); }
|
|
|
| private:
|
| friend class InspectedContext;
|
| @@ -72,7 +71,6 @@ private:
|
| OwnPtr<V8HeapProfilerAgentImpl> m_heapProfilerAgent;
|
| OwnPtr<V8ProfilerAgentImpl> m_profilerAgent;
|
|
|
| - OwnPtr<V8RuntimeAgent::InspectCallback> m_inspectCallback;
|
| OwnPtr<V8RuntimeAgent::ClearConsoleCallback> m_clearConsoleCallback;
|
| };
|
|
|
|
|