HomeSort by relevance Sort by last modified time
    Searched refs:InspectorProfilerAgent (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebCore/inspector/
InspectorProfilerAgent.cpp 31 #include "InspectorProfilerAgent.h"
66 PassOwnPtr<InspectorProfilerAgent> InspectorProfilerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorConsoleAgent* consoleAgent, Page* inspectedPage, InspectorState* inspectorState)
68 return adoptPtr(new InspectorProfilerAgent(instrumentingAgents, consoleAgent, inspectedPage, inspectorState));
71 InspectorProfilerAgent::InspectorProfilerAgent(InstrumentingAgents* instrumentingAgents, InspectorConsoleAgent* consoleAgent, Page* inspectedPage, InspectorState* inspectorState)
86 InspectorProfilerAgent::~InspectorProfilerAgent()
91 void InspectorProfilerAgent::addProfile(PassRefPtr<ScriptProfile> prpProfile, unsigned lineNumber, const String& sourceURL)
100 void InspectorProfilerAgent::addProfileFinishedMessageToConsole(PassRefPtr<ScriptProfile> prpProfile, unsigned lineNumber, con (…)
    [all...]
InspectorProfilerAgent.h 56 class InspectorProfilerAgent {
57 WTF_MAKE_NONCOPYABLE(InspectorProfilerAgent); WTF_MAKE_FAST_ALLOCATED;
59 static PassOwnPtr<InspectorProfilerAgent> create(InstrumentingAgents*, InspectorConsoleAgent*, Page*, InspectorState*);
60 virtual ~InspectorProfilerAgent();
100 InspectorProfilerAgent(InstrumentingAgents*, InspectorConsoleAgent*, Page*, InspectorState*);
InstrumentingAgents.h 49 class InspectorProfilerAgent;
127 InspectorProfilerAgent* inspectorProfilerAgent() const { return m_inspectorProfilerAgent; }
128 void setInspectorProfilerAgent(InspectorProfilerAgent* agent) { m_inspectorProfilerAgent = agent; }
152 InspectorProfilerAgent* m_inspectorProfilerAgent;
InspectorAgent.h 66 class InspectorProfilerAgent;
137 InspectorProfilerAgent* profilerAgent() const { return m_profilerAgent.get(); }
220 OwnPtr<InspectorProfilerAgent> m_profilerAgent;
InspectorInstrumentation.cpp 51 #include "InspectorProfilerAgent.h"
589 if (InspectorProfilerAgent* profilerAgent = instrumentingAgents->inspectorProfilerAgent()) {
667 if (InspectorProfilerAgent* profilerAgent = inspectorAgent->profilerAgent())
673 if (InspectorProfilerAgent* profilerAgent = inspectorAgent->profilerAgent()) {
681 if (InspectorProfilerAgent* profilerAgent = inspectorAgent->profilerAgent())
688 return inspectorAgent->instrumentingAgents()->inspectorProfilerAgent()->enabled();
    [all...]
InspectorAgent.cpp 51 #include "InspectorProfilerAgent.h"
134 , m_profilerAgent(InspectorProfilerAgent::create(m_instrumentingAgents.get(), m_consoleAgent.get(), page, m_state.get()))

Completed in 72 milliseconds