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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSession.h

Issue 1907663005: [DevTools] Move v8-related instrumentation from agents to InspectorSession. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1889533002
Patch Set: profiler agent restore starts instrumenting 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/public/V8InspectorSession.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSession.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSession.h
index d8befe1463d5a91ae6562a6c792322b83fd6c948..88fcab1c076ef46250661ac8ce9e02348eeec582 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSession.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSession.h
@@ -12,6 +12,7 @@ namespace blink {
class V8DebuggerAgent;
class V8HeapProfilerAgent;
+class V8InspectorSessionClient;
class V8ProfilerAgent;
class V8RuntimeAgent;
@@ -19,6 +20,8 @@ class PLATFORM_EXPORT V8InspectorSession {
public:
virtual ~V8InspectorSession() { }
+ virtual void setClient(V8InspectorSessionClient*) = 0;
+
virtual V8DebuggerAgent* debuggerAgent() = 0;
virtual V8HeapProfilerAgent* heapProfilerAgent() = 0;
virtual V8ProfilerAgent* profilerAgent() = 0;

Powered by Google App Engine
This is Rietveld 408576698