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

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

Issue 1924173002: [DevTools] Improve performance of InstrumentingAgents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile 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 d7532d94fa1fdd29bbdb6bb26b1f3a5e94867038..95dc8a4aeb077a71144b9b6f3d457dacf392ceb9 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
+++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
@@ -34,7 +34,6 @@
#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"
@@ -62,7 +61,7 @@ public:
~WorkerInspectorController();
DECLARE_TRACE();
- InstrumentingSessions* instrumentingSessions() const { return m_instrumentingSessions.get(); }
+ InstrumentingAgents* instrumentingAgents() const { return m_instrumentingAgents.get(); }
void connectFrontend();
void disconnectFrontend();
@@ -80,7 +79,7 @@ private:
WorkerThreadDebugger* m_debugger;
Member<WorkerGlobalScope> m_workerGlobalScope;
- Member<InstrumentingSessions> m_instrumentingSessions;
+ Member<InstrumentingAgents> m_instrumentingAgents;
OwnPtr<V8InspectorSession> m_v8Session;
Member<InspectorSession> m_session;
};

Powered by Google App Engine
This is Rietveld 408576698