OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timelineAgent
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/inspector/
WorkerConsoleAgent.cpp
37
WorkerConsoleAgent::WorkerConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorTimelineAgent*
timelineAgent
, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager)
38
: InspectorConsoleAgent(instrumentingAgents,
timelineAgent
, state, injectedScriptManager)
WorkerConsoleAgent.h
42
static PassOwnPtr<WorkerConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorTimelineAgent*
timelineAgent
, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager)
44
return adoptPtr(new WorkerConsoleAgent(instrumentingAgents,
timelineAgent
, state, injectedScriptManager));
PageConsoleAgent.h
44
static PassOwnPtr<PageConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent, InspectorTimelineAgent*
timelineAgent
)
46
return adoptPtr(new PageConsoleAgent(instrumentingAgents, state, injectedScriptManager, domAgent,
timelineAgent
));
PageConsoleAgent.cpp
42
PageConsoleAgent::PageConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent, InspectorTimelineAgent*
timelineAgent
)
43
: InspectorConsoleAgent(instrumentingAgents,
timelineAgent
, state, injectedScriptManager)
InspectorController.cpp
390
if (InspectorTimelineAgent*
timelineAgent
= m_instrumentingAgents->inspectorTimelineAgent())
391
timelineAgent
->willProcessTask();
398
if (InspectorTimelineAgent*
timelineAgent
= m_instrumentingAgents->inspectorTimelineAgent())
399
timelineAgent
->didProcessTask();
408
if (InspectorTimelineAgent*
timelineAgent
= m_instrumentingAgents->inspectorTimelineAgent())
409
timelineAgent
->didBeginFrame(frameId);
416
if (InspectorTimelineAgent*
timelineAgent
= m_instrumentingAgents->inspectorTimelineAgent())
417
timelineAgent
->didCancelFrame();
422
if (InspectorTimelineAgent*
timelineAgent
= m_instrumentingAgents->inspectorTimelineAgent())
423
timelineAgent
->willComposite()
[
all
...]
WorkerInspectorController.cpp
100
OwnPtr<InspectorTimelineAgent>
timelineAgent
= InspectorTimelineAgent::create(m_instrumentingAgents.get(), 0, 0, 0, 0, m_state.get(), InspectorTimelineAgent::WorkerInspector, 0);
105
m_agents.append(WorkerConsoleAgent::create(m_instrumentingAgents.get(),
timelineAgent
.get(), m_state.get(), m_injectedScriptManager.get()));
106
m_agents.append(
timelineAgent
.release());
InspectorInstrumentation.cpp
196
InspectorTimelineAgent*
timelineAgent
= cookie.instrumentingAgents()->inspectorTimelineAgent();
197
if (
timelineAgent
&& cookie.hasMatchingTimelineAgentId(
timelineAgent
->id()))
198
return
timelineAgent
;
InspectorConsoleAgent.cpp
65
InspectorConsoleAgent::InspectorConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorTimelineAgent*
timelineAgent
, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager)
67
, m_timelineAgent(
timelineAgent
)
InspectorTimelineAgent.cpp
187
TimelineThreadState(InspectorTimelineAgent*
timelineAgent
)
188
: recordStack(
timelineAgent
)
[
all
...]
Completed in 37 milliseconds