HomeSort by relevance Sort by last modified time
    Searched defs:InspectorHeapProfilerAgent (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorHeapProfilerAgent.h 51 class InspectorHeapProfilerAgent : public InspectorBaseAgent<InspectorHeapProfilerAgent>, public InspectorBackendDispatcher::HeapProfilerCommandHandler {
52 WTF_MAKE_NONCOPYABLE(InspectorHeapProfilerAgent); WTF_MAKE_FAST_ALLOCATED;
54 static PassOwnPtr<InspectorHeapProfilerAgent> create(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*);
55 virtual ~InspectorHeapProfilerAgent();
79 InspectorHeapProfilerAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*);
InspectorHeapProfilerAgent.cpp 32 #include "core/inspector/InspectorHeapProfilerAgent.h"
49 class InspectorHeapProfilerAgent::HeapStatsUpdateTask {
51 HeapStatsUpdateTask(InspectorHeapProfilerAgent*);
57 InspectorHeapProfilerAgent* m_heapProfilerAgent;
61 PassOwnPtr<InspectorHeapProfilerAgent> InspectorHeapProfilerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager)
63 return adoptPtr(new InspectorHeapProfilerAgent(instrumentingAgents, inspectorState, injectedScriptManager));
66 InspectorHeapProfilerAgent::InspectorHeapProfilerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager)
67 : InspectorBaseAgent<InspectorHeapProfilerAgent>("HeapProfiler", instrumentingAgents, inspectorState
    [all...]

Completed in 75 milliseconds