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

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

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.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorSession.cpp b/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
index a7a9374cc5e1d23cd374c2a11679f0d1382c67d0..879f3f7b43ecaa497eb57fd8973395d51dfc86da 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
@@ -18,12 +18,13 @@ namespace {
const char kV8StateKey[] = "v8";
}
-InspectorSession::InspectorSession(Client* client,
- InstrumentingAgents* instrumentingAgents,
- int sessionId,
- v8_inspector::V8Inspector* inspector,
- int contextGroupId,
- const String* savedState)
+InspectorSession::InspectorSession(
+ Client* client,
+ InspectorInstrumentationAgents* instrumentingAgents,
+ int sessionId,
+ v8_inspector::V8Inspector* inspector,
+ int contextGroupId,
+ const String* savedState)
: m_client(client),
m_v8Session(nullptr),
m_sessionId(sessionId),

Powered by Google App Engine
This is Rietveld 408576698