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

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

Issue 2760363002: [instrumentation] Generalize instrumentation to be used beyond the core layer (Closed)
Patch Set: Created 3 years, 9 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/InspectorSession.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorSession.h b/third_party/WebKit/Source/core/inspector/InspectorSession.h
index 31c512766e81dd82ce09445f1a7579d6bbdeddf2..95fcb8c12697a34929e6a78df1973342104f409d 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorSession.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorSession.h
@@ -17,7 +17,7 @@
namespace blink {
class InspectorAgent;
-class InstrumentingAgents;
+class InspectorInstrumentationAgents;
class LocalFrame;
class CORE_EXPORT InspectorSession
@@ -37,7 +37,7 @@ class CORE_EXPORT InspectorSession
};
InspectorSession(Client*,
- InstrumentingAgents*,
+ InspectorInstrumentationAgents*,
int sessionId,
v8_inspector::V8Inspector*,
int contextGroupId,
@@ -80,7 +80,7 @@ class CORE_EXPORT InspectorSession
std::unique_ptr<v8_inspector::V8InspectorSession> m_v8Session;
int m_sessionId;
bool m_disposed;
- Member<InstrumentingAgents> m_instrumentingAgents;
+ Member<InspectorInstrumentationAgents> m_instrumentingAgents;
std::unique_ptr<protocol::UberDispatcher> m_inspectorBackendDispatcher;
std::unique_ptr<protocol::DictionaryValue> m_state;
HeapVector<Member<InspectorAgent>> m_agents;

Powered by Google App Engine
This is Rietveld 408576698