| Index: third_party/WebKit/Source/core/inspector/InspectorHeapProfilerAgent.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorHeapProfilerAgent.h b/third_party/WebKit/Source/core/inspector/InspectorHeapProfilerAgent.h
|
| index 501d434a65702f6f5347f5c6b552393584f893fb..84c1ef88191e0efe00301389f0b9f50dd0e4222e 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorHeapProfilerAgent.h
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorHeapProfilerAgent.h
|
| @@ -32,7 +32,6 @@
|
| #define InspectorHeapProfilerAgent_h
|
|
|
| #include "core/CoreExport.h"
|
| -#include "core/InspectorFrontend.h"
|
| #include "core/inspector/InspectorBaseAgent.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/Noncopyable.h"
|
| @@ -50,7 +49,7 @@ class V8RuntimeAgent;
|
|
|
| typedef String ErrorString;
|
|
|
| -class CORE_EXPORT InspectorHeapProfilerAgent final : public InspectorBaseAgent<InspectorHeapProfilerAgent, InspectorFrontend::HeapProfiler>, public InspectorBackendDispatcher::HeapProfilerCommandHandler {
|
| +class CORE_EXPORT InspectorHeapProfilerAgent final : public InspectorBaseAgent<InspectorHeapProfilerAgent, protocol::Frontend::HeapProfiler>, public protocol::Dispatcher::HeapProfilerCommandHandler {
|
| WTF_MAKE_NONCOPYABLE(InspectorHeapProfilerAgent);
|
| USING_FAST_MALLOC_WILL_BE_REMOVED(InspectorHeapProfilerAgent);
|
| public:
|
| @@ -59,7 +58,7 @@ public:
|
|
|
| // InspectorBaseAgent overrides.
|
| void setState(PassRefPtr<JSONObject>) override;
|
| - void setFrontend(InspectorFrontend*) override;
|
| + void setFrontend(protocol::Frontend*) override;
|
| void clearFrontend() override;
|
| void restore() override;
|
|
|
| @@ -72,7 +71,7 @@ public:
|
|
|
| void takeHeapSnapshot(ErrorString*, const bool* reportProgress) override;
|
|
|
| - void getObjectByHeapObjectId(ErrorString*, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<TypeBuilder::Runtime::RemoteObject>& result) override;
|
| + void getObjectByHeapObjectId(ErrorString*, const String& heapSnapshotObjectId, const String* objectGroup, RefPtr<protocol::TypeBuilder::Runtime::RemoteObject>& result) override;
|
| void addInspectedHeapObject(ErrorString*, const String& inspectedHeapObjectId) override;
|
| void getHeapObjectId(ErrorString*, const String& objectId, String* heapSnapshotObjectId) override;
|
|
|
|
|