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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorBaseAgent.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/InspectorBaseAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h b/third_party/WebKit/Source/core/inspector/InspectorBaseAgent.h
index 2ad507f61a589772e479ae2cf8d49487f6579349..f6c2e590b7efcb6f8ce9da141ddb3047f9290f02 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/InstrumentingAgents.h"
+#include "core/InspectorInstrumentationAgents.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(InstrumentingAgents*,
+ virtual void init(InspectorInstrumentationAgents*,
protocol::UberDispatcher*,
protocol::DictionaryValue*) = 0;
virtual void dispose() = 0;
@@ -65,7 +65,7 @@ class InspectorBaseAgent : public InspectorAgent,
public:
~InspectorBaseAgent() override {}
- void init(InstrumentingAgents* instrumentingAgents,
+ void init(InspectorInstrumentationAgents* 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<InstrumentingAgents> m_instrumentingAgents;
+ Member<InspectorInstrumentationAgents> m_instrumentingAgents;
protocol::DictionaryValue* m_state;
private:

Powered by Google App Engine
This is Rietveld 408576698