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

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

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: fix typo 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 879f3f7b43ecaa497eb57fd8973395d51dfc86da..52a734067766cb28101fb85806f9542b3a560e70 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
@@ -8,9 +8,9 @@
#include "core/frame/LocalFrame.h"
#include "core/frame/UseCounter.h"
#include "core/inspector/InspectorBaseAgent.h"
-#include "core/inspector/InspectorInstrumentation.h"
#include "core/inspector/V8InspectorString.h"
#include "core/inspector/protocol/Protocol.h"
+#include "core/probe/CoreProbes.h"
namespace blink {
@@ -18,13 +18,12 @@ namespace {
const char kV8StateKey[] = "v8";
}
-InspectorSession::InspectorSession(
- Client* client,
- InspectorInstrumentationAgents* instrumentingAgents,
- int sessionId,
- v8_inspector::V8Inspector* inspector,
- int contextGroupId,
- const String* savedState)
+InspectorSession::InspectorSession(Client* client,
+ CoreProbeSink* 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