Index: Source/core/inspector/InspectorHeapProfilerAgent.cpp |
diff --git a/Source/core/inspector/InspectorHeapProfilerAgent.cpp b/Source/core/inspector/InspectorHeapProfilerAgent.cpp |
index caf386c6e4e3f4b2075d99aec3295022e9549de8..a75e77fb1de97fae2a7dce25aa2d29e0a32d8683 100644 |
--- a/Source/core/inspector/InspectorHeapProfilerAgent.cpp |
+++ b/Source/core/inspector/InspectorHeapProfilerAgent.cpp |
@@ -36,8 +36,6 @@ |
#include "InspectorState.h" |
#include "InstrumentingAgents.h" |
#include "ScriptProfiler.h" |
-#include "WebCoreMemoryInstrumentation.h" |
-#include <wtf/MemoryInstrumentationHashMap.h> |
namespace WebCore { |
@@ -230,14 +228,5 @@ void InspectorHeapProfilerAgent::getHeapObjectId(ErrorString* errorString, const |
*heapSnapshotObjectId = String::number(id); |
} |
-void InspectorHeapProfilerAgent::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
-{ |
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::InspectorProfilerAgent); |
- InspectorBaseAgent<InspectorHeapProfilerAgent>::reportMemoryUsage(memoryObjectInfo); |
- info.addMember(m_injectedScriptManager, "injectedScriptManager"); |
- info.addWeakPointer(m_frontend); |
- info.addMember(m_snapshots, "snapshots"); |
-} |
- |
} // namespace WebCore |