| 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 c8b47ceb18b25929a3de0db03686309834543356..1915382a9e413c15b9a4d4bfebc4c4c928afb78d 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
|
| @@ -54,8 +54,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:
|
| V8InspectorSessionImpl(V8DebuggerImpl*, int contextGroupId);
|
| @@ -70,7 +68,6 @@ private:
|
| OwnPtr<V8HeapProfilerAgentImpl> m_heapProfilerAgent;
|
| OwnPtr<V8ProfilerAgentImpl> m_profilerAgent;
|
|
|
| - OwnPtr<V8RuntimeAgent::InspectCallback> m_inspectCallback;
|
| OwnPtr<V8RuntimeAgent::ClearConsoleCallback> m_clearConsoleCallback;
|
| };
|
|
|
|
|