Home | History | Annotate | Download | only in inspector

Lines Matching defs:instrumentingAgents

42 #include "core/inspector/InstrumentingAgents.h"
50 static HashSet<InstrumentingAgents*>* instrumentingAgentsSet = 0;
63 InspectorInstrumentationCookie::InspectorInstrumentationCookie(InstrumentingAgents* agents, int timelineAgentId)
90 bool isDebuggerPausedImpl(InstrumentingAgents* instrumentingAgents)
92 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
97 void continueAfterPingLoaderImpl(InstrumentingAgents* instrumentingAgents, unsigned long identifier, DocumentLoader* loader, ResourceRequest& request, const ResourceResponse& response)
99 willSendRequestImpl(instrumentingAgents, identifier, loader, request, response, FetchInitiatorInfo());
127 HashSet<InstrumentingAgents*>::iterator end = instrumentingAgentsSet->end();
128 for (HashSet<InstrumentingAgents*>::iterator it = instrumentingAgentsSet->begin(); it != end; ++it) {
129 InstrumentingAgents* instrumentingAgents = *it;
130 if (InspectorResourceAgent* inspectorResourceAgent = instrumentingAgents->inspectorResourceAgent())
135 bool profilerEnabledImpl(InstrumentingAgents* instrumentingAgents)
137 if (InspectorProfilerAgent* profilerAgent = instrumentingAgents->inspectorProfilerAgent())
142 bool collectingHTMLParseErrorsImpl(InstrumentingAgents* instrumentingAgents)
144 if (InspectorAgent* inspectorAgent = instrumentingAgents->inspectorAgent())
151 InstrumentingAgents* instrumentingAgents = instrumentingAgentsForScriptExecutionContext(scriptExecutionContext);
152 return instrumentingAgents && instrumentingAgents->inspectorCanvasAgent();
157 InstrumentingAgents* instrumentingAgents = instrumentingAgentsForScriptExecutionContext(scriptExecutionContext);
158 InspectorConsoleAgent* consoleAgent = instrumentingAgents ? instrumentingAgents->inspectorConsoleAgent() : 0;
164 InstrumentingAgents* instrumentingAgents = instrumentingAgentsForScriptExecutionContext(scriptExecutionContext);
165 return instrumentingAgents && instrumentingAgents->inspectorTimelineAgent();
168 void registerInstrumentingAgents(InstrumentingAgents* instrumentingAgents)
171 instrumentingAgentsSet = new HashSet<InstrumentingAgents*>();
172 instrumentingAgentsSet->add(instrumentingAgents);
175 void unregisterInstrumentingAgents(InstrumentingAgents* instrumentingAgents)
179 instrumentingAgentsSet->remove(instrumentingAgents);
188 if (!cookie.instrumentingAgents())
190 InspectorTimelineAgent* timelineAgent = cookie.instrumentingAgents()->inspectorTimelineAgent();
196 InstrumentingAgents* instrumentingAgentsForPage(Page* page)
203 InstrumentingAgents* instrumentingAgentsForRenderObject(RenderObject* renderer)
208 InstrumentingAgents* instrumentingAgentsForWorkerGlobalScope(WorkerGlobalScope* workerGlobalScope)
215 InstrumentingAgents* instrumentingAgentsForNonDocumentContext(ScriptExecutionContext* context)
247 InstrumentingAgents* instrumentationForPage(Page* page)
255 InstrumentingAgents* instrumentationForWorkerGlobalScope(WorkerGlobalScope* workerGlobalScope)