Home | History | Annotate | Download | only in inspector

Lines Matching defs:InspectorProfilerAgent

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, const String& sourceURL)
110 void InspectorProfilerAgent::addStartProfilingMessageToConsole(const String& title, unsigned lineNumber, const String& sourceURL)
118 void InspectorProfilerAgent::collectGarbage(WebCore::ErrorString*)
123 PassRefPtr<InspectorObject> InspectorProfilerAgent::createProfileHeader(const ScriptProfile& profile)
132 PassRefPtr<InspectorObject> InspectorProfilerAgent::createSnapshotHeader(const ScriptHeapSnapshot& snapshot)
141 void InspectorProfilerAgent::enable(ErrorString*)
149 void InspectorProfilerAgent::disable(ErrorString*)
155 void InspectorProfilerAgent::disable()
165 void InspectorProfilerAgent::enable(bool skipRecompile)
176 String InspectorProfilerAgent::getCurrentUserInitiatedProfileName(bool incrementProfileNumber)
184 void InspectorProfilerAgent::getProfileHeaders(ErrorString*, RefPtr<InspectorArray>* headers)
209 void InspectorProfilerAgent::getProfile(ErrorString*, const String& type, unsigned uid, RefPtr<InspectorObject>* profileObject)
230 void InspectorProfilerAgent::removeProfile(ErrorString*, const String& type, unsigned uid)
241 void InspectorProfilerAgent::resetState()
252 void InspectorProfilerAgent::resetFrontendProfiles()
260 void InspectorProfilerAgent::setFrontend(InspectorFrontend* frontend)
266 void InspectorProfilerAgent::clearFrontend()
272 void InspectorProfilerAgent::restore()
283 void InspectorProfilerAgent::restoreEnablement()
291 void InspectorProfilerAgent::startUserInitiatedProfiling()
312 void InspectorProfilerAgent::stopUserInitiatedProfiling(bool ignoreProfile)
360 void InspectorProfilerAgent::takeHeapSnapshot(ErrorString*, bool detailed)
374 void InspectorProfilerAgent::toggleRecordButton(bool isProfiling)