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

Unified Diff: third_party/WebKit/Source/core/inspector/WorkerInspectorController.h

Issue 1903953002: [DevTools] Move from InstrumentingAgents to InstrumentingSessions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-discard-agent
Patch Set: rebased 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/core/inspector/WorkerInspectorController.h
diff --git a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
index 95dc8a4aeb077a71144b9b6f3d457dacf392ceb9..d7532d94fa1fdd29bbdb6bb26b1f3a5e94867038 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
+++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
@@ -34,6 +34,7 @@
#include "core/inspector/InspectorRuntimeAgent.h"
#include "core/inspector/InspectorSession.h"
#include "core/inspector/InspectorTaskRunner.h"
+#include "core/inspector/InstrumentingSessions.h"
#include "wtf/Allocator.h"
#include "wtf/Forward.h"
#include "wtf/Noncopyable.h"
@@ -61,7 +62,7 @@ public:
~WorkerInspectorController();
DECLARE_TRACE();
- InstrumentingAgents* instrumentingAgents() const { return m_instrumentingAgents.get(); }
+ InstrumentingSessions* instrumentingSessions() const { return m_instrumentingSessions.get(); }
void connectFrontend();
void disconnectFrontend();
@@ -79,7 +80,7 @@ private:
WorkerThreadDebugger* m_debugger;
Member<WorkerGlobalScope> m_workerGlobalScope;
- Member<InstrumentingAgents> m_instrumentingAgents;
+ Member<InstrumentingSessions> m_instrumentingSessions;
OwnPtr<V8InspectorSession> m_v8Session;
Member<InspectorSession> m_session;
};

Powered by Google App Engine
This is Rietveld 408576698