| 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..fcf477770e3637edab8be93f96b0f59c01d0923e 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/CoreProbesSink.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(CoreProbesSink*,
|
| 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(CoreProbesSink* 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<CoreProbesSink> m_instrumentingAgents;
|
| protocol::DictionaryValue* m_state;
|
|
|
| private:
|
|
|