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

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

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/InspectorBaseAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h b/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h
index f6c2e590b7efcb6f8ce9da141ddb3047f9290f02..af984b9ce624b6d31205bf222c03bc80944aacab 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h
@@ -32,7 +32,7 @@
#define InspectorBaseAgent_h
#include "core/CoreExport.h"
-#include "core/InspectorInstrumentationAgents.h"
+#include "core/CoreProbeSink.h"
#include "core/inspector/protocol/Protocol.h"
#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
@@ -53,7 +53,7 @@ class CORE_EXPORT InspectorAgent
virtual void didCommitLoadForLocalFrame(LocalFrame*) {}
virtual void flushPendingProtocolNotifications() {}
- virtual void init(InspectorInstrumentationAgents*,
+ virtual void init(CoreProbeSink*,
protocol::UberDispatcher*,
protocol::DictionaryValue*) = 0;
virtual void dispose() = 0;
@@ -65,7 +65,7 @@ class InspectorBaseAgent : public InspectorAgent,
public:
~InspectorBaseAgent() override {}
- void init(InspectorInstrumentationAgents* instrumentingAgents,
+ void init(CoreProbeSink* instrumentingAgents,
protocol::UberDispatcher* dispatcher,
protocol::DictionaryValue* state) override {
m_instrumentingAgents = instrumentingAgents;
@@ -102,7 +102,7 @@ class InspectorBaseAgent : public InspectorAgent,
typename DomainMetainfo::FrontendClass* frontend() const {
return m_frontend.get();
}
- Member<InspectorInstrumentationAgents> m_instrumentingAgents;
+ Member<CoreProbeSink> m_instrumentingAgents;
protocol::DictionaryValue* m_state;
private:

Powered by Google App Engine
This is Rietveld 408576698