/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
H A D | InspectorInstrumentationCustomInl.h | 48 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 D | WorkerConsoleAgent.cpp | 37 WorkerConsoleAgent::WorkerConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager) argument 38 : InspectorConsoleAgent(instrumentingAgents, state, injectedScriptManager)
|
H A D | InspectorInstrumentation.cpp | 90 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 D | WorkerConsoleAgent.h | 42 static PassOwnPtr<WorkerConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager) argument 44 return adoptPtr(new WorkerConsoleAgent(instrumentingAgents, state, injectedScriptManager));
|
H A D | InspectorMemoryAgent.cpp | 52 InspectorMemoryAgent::InspectorMemoryAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state) argument 53 : InspectorBaseAgent<InspectorMemoryAgent>("Memory", instrumentingAgents, state)
|
H A D | PageConsoleAgent.h | 44 static PassOwnPtr<PageConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent) argument 46 return adoptPtr(new PageConsoleAgent(instrumentingAgents, state, injectedScriptManager, domAgent));
|
H A D | InspectorMemoryAgent.h | 49 static PassOwnPtr<InspectorMemoryAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state) argument 51 return adoptPtr(new InspectorMemoryAgent(instrumentingAgents, state));
|
H A D | WorkerRuntimeAgent.cpp | 45 WorkerRuntimeAgent::WorkerRuntimeAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* workerGlobalScope) argument 46 : InspectorRuntimeAgent(instrumentingAgents, state, injectedScriptManager, scriptDebugServer)
|
H A D | WorkerRuntimeAgent.h | 43 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 D | PageDebuggerAgent.cpp | 44 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 D | WorkerDebuggerAgent.cpp | 81 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 D | InjectedScriptHost.h | 61 void init(InstrumentingAgents* instrumentingAgents, ScriptDebugServer* scriptDebugServer) argument 63 m_instrumentingAgents = instrumentingAgents;
|
H A D | InspectorApplicationCacheAgent.h | 46 static PassOwnPtr<InspectorApplicationCacheAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorPageAgent* pageAgent) argument 48 return adoptPtr(new InspectorApplicationCacheAgent(instrumentingAgents, state, pageAgent));
|
H A D | InspectorBaseAgent.cpp | 39 InspectorBaseAgentInterface::InspectorBaseAgentInterface(const String& name, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState) argument 40 : m_instrumentingAgents(instrumentingAgents)
|
H A D | InspectorBaseAgent.h | 92 InspectorBaseAgent(const String& name, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState) argument 93 : InspectorBaseAgentInterface(name, instrumentingAgents, inspectorState)
|
H A D | InspectorDatabaseAgent.h | 51 static PassOwnPtr<InspectorDatabaseAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state) argument 53 return adoptPtr(new InspectorDatabaseAgent(instrumentingAgents, state));
|
H A D | InspectorIndexedDBAgent.h | 47 static PassOwnPtr<InspectorIndexedDBAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorPageAgent* pageAgent) argument 49 return adoptPtr(new InspectorIndexedDBAgent(instrumentingAgents, state, injectedScriptManager, pageAgent));
|
H A D | InspectorInputAgent.h | 48 static PassOwnPtr<InspectorInputAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, Page* page, InspectorClient* client) argument 50 return adoptPtr(new InspectorInputAgent(instrumentingAgents, inspectorState, page, client));
|
H A D | InspectorLayerTreeAgent.h | 52 static PassOwnPtr<InspectorLayerTreeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorDOMAgent* domAgent, Page* page) argument 54 return adoptPtr(new InspectorLayerTreeAgent(instrumentingAgents, state, domAgent, page));
|
H A D | PageConsoleAgent.cpp | 42 PageConsoleAgent::PageConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent) argument 43 : InspectorConsoleAgent(instrumentingAgents, state, injectedScriptManager)
|
H A D | PageRuntimeAgent.h | 47 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 D | InspectorWorkerAgent.cpp | 108 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 D | InspectorAgent.h | 57 static PassOwnPtr<InspectorAgent> create(Page* page, InjectedScriptManager* injectedScriptManager, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state) argument 59 return adoptPtr(new InspectorAgent(page, injectedScriptManager, instrumentingAgents, state));
|
H A D | InspectorDOMStorageAgent.h | 51 static PassOwnPtr<InspectorDOMStorageAgent> create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* state) argument 53 return adoptPtr(new InspectorDOMStorageAgent(instrumentingAgents, pageAgent, state));
|
H A D | InspectorCanvasAgent.h | 57 static PassOwnPtr<InspectorCanvasAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager) argument 59 return adoptPtr(new InspectorCanvasAgent(instrumentingAgents, state, pageAgent, injectedScriptManager));
|