| Index: Source/core/inspector/InspectorMemoryAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorMemoryAgent.cpp b/Source/core/inspector/InspectorMemoryAgent.cpp
|
| index 017c3626fe3a17417d5c8fe7267c9143d41b6654..3d1e1b3df923c64f7a2f67c07aa8a4a0c6cf680b 100644
|
| --- a/Source/core/inspector/InspectorMemoryAgent.cpp
|
| +++ b/Source/core/inspector/InspectorMemoryAgent.cpp
|
| @@ -319,7 +319,7 @@ void InspectorMemoryAgent::getProcessMemoryDistribution(ErrorString*, const bool
|
| void InspectorMemoryAgent::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
|
| {
|
| MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::Inspector);
|
| - InspectorBaseAgent<InspectorMemoryAgent>::reportMemoryUsage(memoryObjectInfo);
|
| + InspectorBaseAgent::reportMemoryUsage(memoryObjectInfo);
|
| info.addWeakPointer(m_inspectorClient);
|
| info.addMember(m_page, "page");
|
| }
|
| @@ -378,8 +378,8 @@ PassRefPtr<InspectorObject> InspectorMemoryAgent::getProcessMemoryDistributionIm
|
| return meta.release();
|
| }
|
|
|
| -InspectorMemoryAgent::InspectorMemoryAgent(InstrumentingAgents* instrumentingAgents, InspectorClient* client, InspectorCompositeState* state, Page* page)
|
| - : InspectorBaseAgent<InspectorMemoryAgent>("Memory", instrumentingAgents, state)
|
| +InspectorMemoryAgent::InspectorMemoryAgent(InstrumentingAgents* instrumentingAgents, InspectorClient* client, InspectorState* state, Page* page)
|
| + : InspectorBaseAgent(instrumentingAgents, state)
|
| , m_inspectorClient(client)
|
| , m_page(page)
|
| , m_frontend(0)
|
|
|