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

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: 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 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;
};

Powered by Google App Engine
This is Rietveld 408576698