Home | History | Annotate | Download | only in inspector

Lines Matching defs:instrumentingAgents

44 #include "core/inspector/InstrumentingAgents.h"
51 static HashSet<InstrumentingAgents*>* instrumentingAgentsSet = 0;
64 InspectorInstrumentationCookie::InspectorInstrumentationCookie(InstrumentingAgents* agents, int timelineAgentId)
91 bool isDebuggerPausedImpl(InstrumentingAgents* instrumentingAgents)
93 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
122 HashSet<InstrumentingAgents*>::iterator end = instrumentingAgentsSet->end();
123 for (HashSet<InstrumentingAgents*>::iterator it = instrumentingAgentsSet->begin(); it != end; ++it) {
124 InstrumentingAgents* instrumentingAgents = *it;
125 if (InspectorResourceAgent* inspectorResourceAgent = instrumentingAgents->inspectorResourceAgent())
130 bool collectingHTMLParseErrorsImpl(InstrumentingAgents* instrumentingAgents)
132 if (InspectorInspectorAgent* inspectorAgent = instrumentingAgents->inspectorInspectorAgent())
137 PassOwnPtr<ScriptSourceCode> preprocessImpl(InstrumentingAgents* instrumentingAgents, LocalFrame* frame, const ScriptSourceCode& sourceCode)
139 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
144 String preprocessEventListenerImpl(InstrumentingAgents* instrumentingAgents, LocalFrame* frame, const String& source, const String& url, const String& functionName)
146 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
153 InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(executionContext);
154 return instrumentingAgents && instrumentingAgents->inspectorCanvasAgent();
159 InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(executionContext);
160 InspectorConsoleAgent* consoleAgent = instrumentingAgents ? instrumentingAgents->inspectorConsoleAgent() : 0;
166 InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(executionContext);
167 return instrumentingAgents && instrumentingAgents->inspectorTimelineAgent();
170 void registerInstrumentingAgents(InstrumentingAgents* instrumentingAgents)
173 instrumentingAgentsSet = new HashSet<InstrumentingAgents*>();
174 instrumentingAgentsSet->add(instrumentingAgents);
177 void unregisterInstrumentingAgents(InstrumentingAgents* instrumentingAgents)
181 instrumentingAgentsSet->remove(instrumentingAgents);
190 if (!cookie.instrumentingAgents())
192 InspectorTimelineAgent* timelineAgent = cookie.instrumentingAgents()->inspectorTimelineAgent();
198 InstrumentingAgents* instrumentingAgentsFor(Page* page)
205 InstrumentingAgents* instrumentingAgentsFor(EventTarget* eventTarget)
212 InstrumentingAgents* instrumentingAgentsFor(RenderObject* renderer)
217 InstrumentingAgents* instrumentingAgentsFor(WorkerGlobalScope* workerGlobalScope)
224 InstrumentingAgents* instrumentingAgentsForNonDocumentContext(ExecutionContext* context)
253 InstrumentingAgents* instrumentationForPage(Page* page)
259 InstrumentingAgents* instrumentationForWorkerGlobalScope(WorkerGlobalScope* workerGlobalScope)