Index: Source/core/inspector/InspectorBaseAgent.cpp |
diff --git a/Source/core/inspector/InspectorBaseAgent.cpp b/Source/core/inspector/InspectorBaseAgent.cpp |
index 9ecb65a20decf3a17236b4f25bcbd81fac88c1bc..6bde2d644675bfb2aee0f70b3580abd9f6d800e8 100644 |
--- a/Source/core/inspector/InspectorBaseAgent.cpp |
+++ b/Source/core/inspector/InspectorBaseAgent.cpp |
@@ -32,7 +32,6 @@ |
#include "InspectorBaseAgent.h" |
#include "InspectorState.h" |
-#include "WebCoreMemoryInstrumentation.h" |
namespace WebCore { |
@@ -47,14 +46,6 @@ InspectorBaseAgentInterface::~InspectorBaseAgentInterface() |
{ |
} |
-void InspectorBaseAgentInterface::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const |
-{ |
- MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::Inspector); |
- info.addMember(m_name, "name"); |
- info.addWeakPointer(m_instrumentingAgents); |
- info.addWeakPointer(m_state); |
-} |
- |
void InspectorAgentRegistry::append(PassOwnPtr<InspectorBaseAgentInterface> agent) |
{ |
m_agents.append(agent); |