/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorInstrumentation.cpp | 90 bool isDebuggerPausedImpl(InstrumentingAgents* instrumentingAgents) in isDebuggerPausedImpl() argument 92 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent()) in isDebuggerPausedImpl() 97 void continueAfterPingLoaderImpl(InstrumentingAgents* instrumentingAgents, unsigned long identifier… in continueAfterPingLoaderImpl() argument 99 …willSendRequestImpl(instrumentingAgents, identifier, loader, request, response, FetchInitiatorInfo… in continueAfterPingLoaderImpl() 128 InstrumentingAgents* instrumentingAgents = *it; in willDestroyResourceImpl() local 129 …if (InspectorResourceAgent* inspectorResourceAgent = instrumentingAgents->inspectorResourceAgent()) in willDestroyResourceImpl() 134 bool collectingHTMLParseErrorsImpl(InstrumentingAgents* instrumentingAgents) in collectingHTMLParseErrorsImpl() argument 136 if (InspectorAgent* inspectorAgent = instrumentingAgents->inspectorAgent()) in collectingHTMLParseErrorsImpl() 141 PassOwnPtr<ScriptSourceCode> preprocessImpl(InstrumentingAgents* instrumentingAgents, Frame* frame,… in preprocessImpl() argument 143 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent()) in preprocessImpl() [all …]
|
D | InspectorInstrumentationCustomInl.h | 50 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(frame)) in isDebuggerPaused() local 51 return isDebuggerPausedImpl(instrumentingAgents); in isDebuggerPaused() 58 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(page)) in collectingHTMLParseErrors() local 59 return collectingHTMLParseErrorsImpl(instrumentingAgents); in collectingHTMLParseErrors() 66 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(frame)) in preprocessEventListener() local 67 return preprocessEventListenerImpl(instrumentingAgents, frame, source, url, functionName); in preprocessEventListener() 74 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(frame)) in preprocess() local 75 return preprocessImpl(instrumentingAgents, frame, sourceCode); in preprocess()
|
D | WorkerDebuggerAgent.cpp | 81 …kerDebuggerAgent> WorkerDebuggerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorC… in create() argument 83 …return adoptPtr(new WorkerDebuggerAgent(instrumentingAgents, inspectorState, scriptDebugServer, in… in create() 86 WorkerDebuggerAgent::WorkerDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorComposi… in WorkerDebuggerAgent() argument 87 : InspectorDebuggerAgent(instrumentingAgents, inspectorState, injectedScriptManager) in WorkerDebuggerAgent()
|
D | PageDebuggerAgent.cpp | 47 PassOwnPtr<PageDebuggerAgent> PageDebuggerAgent::create(InstrumentingAgents* instrumentingAgents, I… in create() argument 49 …return adoptPtr(new PageDebuggerAgent(instrumentingAgents, inspectorState, pageScriptDebugServer, … in create() 52 PageDebuggerAgent::PageDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeSt… in PageDebuggerAgent() argument 53 : InspectorDebuggerAgent(instrumentingAgents, inspectorState, injectedScriptManager) in PageDebuggerAgent()
|
D | WorkerConsoleAgent.cpp | 37 WorkerConsoleAgent::WorkerConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorTimelineA… in WorkerConsoleAgent() argument 38 : InspectorConsoleAgent(instrumentingAgents, timelineAgent, state, injectedScriptManager) in WorkerConsoleAgent()
|
D | WorkerConsoleAgent.h | 42 …static PassOwnPtr<WorkerConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorTi… in create() argument 44 …return adoptPtr(new WorkerConsoleAgent(instrumentingAgents, timelineAgent, state, injectedScriptMa… in create()
|
D | InspectorMemoryAgent.cpp | 50 InspectorMemoryAgent::InspectorMemoryAgent(InstrumentingAgents* instrumentingAgents, InspectorCompo… in InspectorMemoryAgent() argument 51 : InspectorBaseAgent<InspectorMemoryAgent>("Memory", instrumentingAgents, state) in InspectorMemoryAgent()
|
D | InspectorMemoryAgent.h | 47 …static PassOwnPtr<InspectorMemoryAgent> create(InstrumentingAgents* instrumentingAgents, Inspector… in create() argument 49 return adoptPtr(new InspectorMemoryAgent(instrumentingAgents, state)); in create()
|
D | PageConsoleAgent.h | 44 …static PassOwnPtr<PageConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorComp… in create() argument 46 …return adoptPtr(new PageConsoleAgent(instrumentingAgents, state, injectedScriptManager, domAgent, … in create()
|
D | InspectorWorkerAgent.cpp | 108 …ctorWorkerAgent> InspectorWorkerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorC… in create() argument 110 return adoptPtr(new InspectorWorkerAgent(instrumentingAgents, inspectorState)); in create() 113 InspectorWorkerAgent::InspectorWorkerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompo… in InspectorWorkerAgent() argument 114 : InspectorBaseAgent<InspectorWorkerAgent>("Worker", instrumentingAgents, inspectorState) in InspectorWorkerAgent()
|
D | WorkerRuntimeAgent.h | 43 …static PassOwnPtr<WorkerRuntimeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCo… in create() argument 45 …return adoptPtr(new WorkerRuntimeAgent(instrumentingAgents, state, injectedScriptManager, scriptDe… in create()
|
D | WorkerRuntimeAgent.cpp | 45 WorkerRuntimeAgent::WorkerRuntimeAgent(InstrumentingAgents* instrumentingAgents, InspectorComposite… in WorkerRuntimeAgent() argument 46 : InspectorRuntimeAgent(instrumentingAgents, state, injectedScriptManager, scriptDebugServer) in WorkerRuntimeAgent()
|
D | PageConsoleAgent.cpp | 42 PageConsoleAgent::PageConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeStat… in PageConsoleAgent() argument 43 : InspectorConsoleAgent(instrumentingAgents, timelineAgent, state, injectedScriptManager) in PageConsoleAgent()
|
D | InspectorBaseAgent.cpp | 39 …spectorBaseAgentInterface(const String& name, InstrumentingAgents* instrumentingAgents, InspectorC… in InspectorBaseAgentInterface() argument 40 : m_instrumentingAgents(instrumentingAgents) in InspectorBaseAgentInterface()
|
D | InspectorBaseAgent.h | 92 …InspectorBaseAgent(const String& name, InstrumentingAgents* instrumentingAgents, InspectorComposit… in InspectorBaseAgent() argument 93 : InspectorBaseAgentInterface(name, instrumentingAgents, inspectorState) in InspectorBaseAgent()
|
D | PageRuntimeAgent.h | 47 …static PassOwnPtr<PageRuntimeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorComp… in create() argument 49 …return adoptPtr(new PageRuntimeAgent(instrumentingAgents, state, injectedScriptManager, scriptDebu… in create()
|
D | InspectorIndexedDBAgent.h | 47 …static PassOwnPtr<InspectorIndexedDBAgent> create(InstrumentingAgents* instrumentingAgents, Inspec… in create() argument 49 …return adoptPtr(new InspectorIndexedDBAgent(instrumentingAgents, state, injectedScriptManager, pag… in create()
|
D | InspectorInputAgent.h | 48 …static PassOwnPtr<InspectorInputAgent> create(InstrumentingAgents* instrumentingAgents, InspectorC… in create() argument 50 return adoptPtr(new InspectorInputAgent(instrumentingAgents, inspectorState, page, client)); in create()
|
D | InspectorDatabaseAgent.h | 51 …static PassOwnPtr<InspectorDatabaseAgent> create(InstrumentingAgents* instrumentingAgents, Inspect… in create() argument 53 return adoptPtr(new InspectorDatabaseAgent(instrumentingAgents, state)); in create()
|
D | InspectorProfilerAgent.cpp | 84 …ProfilerAgent> InspectorProfilerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorC… in create() argument 86 …return adoptPtr(new InspectorProfilerAgent(instrumentingAgents, inspectorState, injectedScriptMana… in create() 89 InspectorProfilerAgent::InspectorProfilerAgent(InstrumentingAgents* instrumentingAgents, InspectorC… in InspectorProfilerAgent() argument 90 : InspectorBaseAgent<InspectorProfilerAgent>("Profiler", instrumentingAgents, inspectorState) in InspectorProfilerAgent()
|
D | InspectorAgent.h | 54 …InjectedScriptManager* injectedScriptManager, InstrumentingAgents* instrumentingAgents, InspectorC… in create() argument 56 … return adoptPtr(new InspectorAgent(page, injectedScriptManager, instrumentingAgents, state)); in create()
|
D | InjectedScriptHost.h | 61 void init(InstrumentingAgents* instrumentingAgents, ScriptDebugServer* scriptDebugServer) in init() argument 63 m_instrumentingAgents = instrumentingAgents; in init()
|
D | InspectorApplicationCacheAgent.h | 46 …OwnPtr<InspectorApplicationCacheAgent> create(InstrumentingAgents* instrumentingAgents, InspectorC… in create() argument 48 return adoptPtr(new InspectorApplicationCacheAgent(instrumentingAgents, state, pageAgent)); in create()
|
D | InspectorDOMStorageAgent.h | 51 …static PassOwnPtr<InspectorDOMStorageAgent> create(InstrumentingAgents* instrumentingAgents, Inspe… in create() argument 53 return adoptPtr(new InspectorDOMStorageAgent(instrumentingAgents, pageAgent, state)); in create()
|
D | InspectorHeapProfilerAgent.cpp | 60 …ilerAgent> InspectorHeapProfilerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorC… in create() argument 62 …return adoptPtr(new InspectorHeapProfilerAgent(instrumentingAgents, inspectorState, injectedScript… in create() 65 InspectorHeapProfilerAgent::InspectorHeapProfilerAgent(InstrumentingAgents* instrumentingAgents, In… in InspectorHeapProfilerAgent() argument 66 …: InspectorBaseAgent<InspectorHeapProfilerAgent>("HeapProfiler", instrumentingAgents, inspectorSta… in InspectorHeapProfilerAgent()
|