Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(526)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h

Issue 1866213002: [DevTools] Move inspect from Inspector to Runtime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@inspector-connection
Patch Set: inspectRequested Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698