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