OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InspectorProfilerAgent
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorProfilerAgent.h
53
class
InspectorProfilerAgent
: public InspectorBaseAgent<
InspectorProfilerAgent
>, public InspectorBackendDispatcher::ProfilerCommandHandler {
54
WTF_MAKE_NONCOPYABLE(
InspectorProfilerAgent
); WTF_MAKE_FAST_ALLOCATED;
56
static PassOwnPtr<
InspectorProfilerAgent
> create(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, InspectorOverlay*);
57
virtual ~
InspectorProfilerAgent
();
78
InspectorProfilerAgent
(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, InspectorOverlay*);
InspectorProfilerAgent.cpp
31
#include "core/inspector/
InspectorProfilerAgent
.h"
75
class
InspectorProfilerAgent
::ProfileDescriptor {
84
PassOwnPtr<
InspectorProfilerAgent
>
InspectorProfilerAgent
::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
86
return adoptPtr(new
InspectorProfilerAgent
(instrumentingAgents, inspectorState, injectedScriptManager, overlay));
89
InspectorProfilerAgent
::
InspectorProfilerAgent
(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
90
: InspectorBaseAgent<
InspectorProfilerAgent
>("Profiler", instrumentingAgents, inspectorState)
101
InspectorProfilerAgent
::~
InspectorProfilerAgent
()
[
all
...]
Completed in 39 milliseconds