Searched refs:instrumentingAgents (Results 1 - 25 of 52) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorInstrumentationCustomInl.h48 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
49 return profilerEnabledImpl(instrumentingAgents);
56 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForFrame(frame))
57 return isDebuggerPausedImpl(instrumentingAgents);
64 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForPage(page))
65 return collectingHTMLParseErrorsImpl(instrumentingAgents);
H A DWorkerConsoleAgent.cpp37 WorkerConsoleAgent::WorkerConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager) argument
38 : InspectorConsoleAgent(instrumentingAgents, state, injectedScriptManager)
H A DInspectorInstrumentation.cpp90 bool isDebuggerPausedImpl(InstrumentingAgents* instrumentingAgents) argument
92 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
97 void continueAfterPingLoaderImpl(InstrumentingAgents* instrumentingAgents, unsigned long identifier, DocumentLoader* loader, ResourceRequest& request, const ResourceResponse& response) argument
99 willSendRequestImpl(instrumentingAgents, identifier, loader, request, response, FetchInitiatorInfo());
129 InstrumentingAgents* instrumentingAgents = *it; local
130 if (InspectorResourceAgent* inspectorResourceAgent = instrumentingAgents->inspectorResourceAgent())
135 bool profilerEnabledImpl(InstrumentingAgents* instrumentingAgents) argument
137 if (InspectorProfilerAgent* profilerAgent = instrumentingAgents->inspectorProfilerAgent())
142 bool collectingHTMLParseErrorsImpl(InstrumentingAgents* instrumentingAgents) argument
144 if (InspectorAgent* inspectorAgent = instrumentingAgents
151 InstrumentingAgents* instrumentingAgents = instrumentingAgentsForScriptExecutionContext(scriptExecutionContext); local
157 InstrumentingAgents* instrumentingAgents = instrumentingAgentsForScriptExecutionContext(scriptExecutionContext); local
164 InstrumentingAgents* instrumentingAgents = instrumentingAgentsForScriptExecutionContext(scriptExecutionContext); local
168 registerInstrumentingAgents(InstrumentingAgents* instrumentingAgents) argument
175 unregisterInstrumentingAgents(InstrumentingAgents* instrumentingAgents) argument
[all...]
H A DWorkerConsoleAgent.h42 static PassOwnPtr<WorkerConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager) argument
44 return adoptPtr(new WorkerConsoleAgent(instrumentingAgents, state, injectedScriptManager));
H A DInspectorMemoryAgent.cpp52 InspectorMemoryAgent::InspectorMemoryAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state) argument
53 : InspectorBaseAgent<InspectorMemoryAgent>("Memory", instrumentingAgents, state)
H A DPageConsoleAgent.h44 static PassOwnPtr<PageConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent) argument
46 return adoptPtr(new PageConsoleAgent(instrumentingAgents, state, injectedScriptManager, domAgent));
H A DInspectorMemoryAgent.h49 static PassOwnPtr<InspectorMemoryAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state) argument
51 return adoptPtr(new InspectorMemoryAgent(instrumentingAgents, state));
H A DWorkerRuntimeAgent.cpp45 WorkerRuntimeAgent::WorkerRuntimeAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* workerGlobalScope) argument
46 : InspectorRuntimeAgent(instrumentingAgents, state, injectedScriptManager, scriptDebugServer)
H A DWorkerRuntimeAgent.h43 static PassOwnPtr<WorkerRuntimeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* context) argument
45 return adoptPtr(new WorkerRuntimeAgent(instrumentingAgents, state, injectedScriptManager, scriptDebugServer, context));
H A DPageDebuggerAgent.cpp44 PassOwnPtr<PageDebuggerAgent> PageDebuggerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay) argument
46 return adoptPtr(new PageDebuggerAgent(instrumentingAgents, inspectorState, pageScriptDebugServer, pageAgent, injectedScriptManager, overlay));
49 PageDebuggerAgent::PageDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay) argument
50 : InspectorDebuggerAgent(instrumentingAgents, inspectorState, injectedScriptManager)
H A DWorkerDebuggerAgent.cpp81 PassOwnPtr<WorkerDebuggerAgent> WorkerDebuggerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, WorkerScriptDebugServer* scriptDebugServer, WorkerGlobalScope* inspectedWorkerGlobalScope, InjectedScriptManager* injectedScriptManager) argument
83 return adoptPtr(new WorkerDebuggerAgent(instrumentingAgents, inspectorState, scriptDebugServer, inspectedWorkerGlobalScope, injectedScriptManager));
86 WorkerDebuggerAgent::WorkerDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, WorkerScriptDebugServer* scriptDebugServer, WorkerGlobalScope* inspectedWorkerGlobalScope, InjectedScriptManager* injectedScriptManager) argument
87 : InspectorDebuggerAgent(instrumentingAgents, inspectorState, injectedScriptManager)
H A DInjectedScriptHost.h61 void init(InstrumentingAgents* instrumentingAgents, ScriptDebugServer* scriptDebugServer) argument
63 m_instrumentingAgents = instrumentingAgents;
H A DInspectorApplicationCacheAgent.h46 static PassOwnPtr<InspectorApplicationCacheAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorPageAgent* pageAgent) argument
48 return adoptPtr(new InspectorApplicationCacheAgent(instrumentingAgents, state, pageAgent));
H A DInspectorBaseAgent.cpp39 InspectorBaseAgentInterface::InspectorBaseAgentInterface(const String& name, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState) argument
40 : m_instrumentingAgents(instrumentingAgents)
H A DInspectorBaseAgent.h92 InspectorBaseAgent(const String& name, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState) argument
93 : InspectorBaseAgentInterface(name, instrumentingAgents, inspectorState)
H A DInspectorDatabaseAgent.h51 static PassOwnPtr<InspectorDatabaseAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state) argument
53 return adoptPtr(new InspectorDatabaseAgent(instrumentingAgents, state));
H A DInspectorIndexedDBAgent.h47 static PassOwnPtr<InspectorIndexedDBAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorPageAgent* pageAgent) argument
49 return adoptPtr(new InspectorIndexedDBAgent(instrumentingAgents, state, injectedScriptManager, pageAgent));
H A DInspectorInputAgent.h48 static PassOwnPtr<InspectorInputAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, Page* page, InspectorClient* client) argument
50 return adoptPtr(new InspectorInputAgent(instrumentingAgents, inspectorState, page, client));
H A DInspectorLayerTreeAgent.h52 static PassOwnPtr<InspectorLayerTreeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorDOMAgent* domAgent, Page* page) argument
54 return adoptPtr(new InspectorLayerTreeAgent(instrumentingAgents, state, domAgent, page));
H A DPageConsoleAgent.cpp42 PageConsoleAgent::PageConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent) argument
43 : InspectorConsoleAgent(instrumentingAgents, state, injectedScriptManager)
H A DPageRuntimeAgent.h47 static PassOwnPtr<PageRuntimeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent) argument
49 return adoptPtr(new PageRuntimeAgent(instrumentingAgents, state, injectedScriptManager, scriptDebugServer, page, pageAgent));
H A DInspectorWorkerAgent.cpp108 PassOwnPtr<InspectorWorkerAgent> InspectorWorkerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState) argument
110 return adoptPtr(new InspectorWorkerAgent(instrumentingAgents, inspectorState));
113 InspectorWorkerAgent::InspectorWorkerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState) argument
114 : InspectorBaseAgent<InspectorWorkerAgent>("Worker", instrumentingAgents, inspectorState)
H A DInspectorAgent.h57 static PassOwnPtr<InspectorAgent> create(Page* page, InjectedScriptManager* injectedScriptManager, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state) argument
59 return adoptPtr(new InspectorAgent(page, injectedScriptManager, instrumentingAgents, state));
H A DInspectorDOMStorageAgent.h51 static PassOwnPtr<InspectorDOMStorageAgent> create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* state) argument
53 return adoptPtr(new InspectorDOMStorageAgent(instrumentingAgents, pageAgent, state));
H A DInspectorCanvasAgent.h57 static PassOwnPtr<InspectorCanvasAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager) argument
59 return adoptPtr(new InspectorCanvasAgent(instrumentingAgents, state, pageAgent, injectedScriptManager));

Completed in 345 milliseconds

123