Index: Source/core/inspector/InspectorMemoryAgent.h |
diff --git a/Source/core/inspector/InspectorMemoryAgent.h b/Source/core/inspector/InspectorMemoryAgent.h |
index 6ac6a72682471fb1331d98f8d9c6ef306f253ad2..05dbcedb6fddee7e2c364fc6cf1bdfe717dbcf31 100644 |
--- a/Source/core/inspector/InspectorMemoryAgent.h |
+++ b/Source/core/inspector/InspectorMemoryAgent.h |
@@ -58,12 +58,10 @@ public: |
} |
virtual ~InspectorMemoryAgent(); |
- virtual void getDOMCounters(ErrorString*, int* documents, int* nodes, int* jsEventListeners); |
- virtual void getProcessMemoryDistribution(ErrorString*, const bool* reportGraph, RefPtr<TypeBuilder::Memory::MemoryBlock>& out_processMemory, RefPtr<InspectorObject>& graphMetaInformation); |
- |
- virtual void reportMemoryUsage(MemoryObjectInfo*) const; |
+ virtual void getProcessMemoryDistribution(ErrorString*, const bool* in_reportGraph, RefPtr<TypeBuilder::Memory::MemoryBlock>& out_distribution, RefPtr<InspectorObject>& opt_out_graphMetaInformation) {} |
+ |
- void getProcessMemoryDistributionMap(HashMap<String, size_t>* memoryInfo); |
+ virtual void getDOMCounters(ErrorString*, int* documents, int* nodes, int* jsEventListeners); |
virtual void setFrontend(InspectorFrontend*); |
virtual void clearFrontend(); |
@@ -71,8 +69,6 @@ public: |
private: |
InspectorMemoryAgent(InstrumentingAgents*, InspectorClient*, InspectorCompositeState*, Page*); |
- PassRefPtr<InspectorObject> getProcessMemoryDistributionImpl(bool reportGraph, HashMap<String, size_t>* memoryInfo); |
- |
InspectorClient* m_inspectorClient; |
Page* m_page; |
InspectorFrontend::Memory* m_frontend; |