Home
last modified time | relevance | path

Searched refs:instrumentingAgents (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorInstrumentation.cpp91 bool isDebuggerPausedImpl(InstrumentingAgents* instrumentingAgents) in isDebuggerPausedImpl() argument
93 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent()) in isDebuggerPausedImpl()
124 InstrumentingAgents* instrumentingAgents = *it; in willDestroyResourceImpl() local
125 …if (InspectorResourceAgent* inspectorResourceAgent = instrumentingAgents->inspectorResourceAgent()) in willDestroyResourceImpl()
130 bool collectingHTMLParseErrorsImpl(InstrumentingAgents* instrumentingAgents) in collectingHTMLParseErrorsImpl() argument
132 if (InspectorInspectorAgent* inspectorAgent = instrumentingAgents->inspectorInspectorAgent()) in collectingHTMLParseErrorsImpl()
137 PassOwnPtr<ScriptSourceCode> preprocessImpl(InstrumentingAgents* instrumentingAgents, LocalFrame* f… in preprocessImpl() argument
139 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent()) in preprocessImpl()
144 String preprocessEventListenerImpl(InstrumentingAgents* instrumentingAgents, LocalFrame* frame, con… in preprocessEventListenerImpl() argument
146 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent()) in preprocessEventListenerImpl()
[all …]
DInspectorInstrumentationCustomInl.h50 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()
DInspectorBaseAgent.cpp48 void InspectorAgent::appended(InstrumentingAgents* instrumentingAgents, InspectorState* inspectorSt… in appended() argument
50 m_instrumentingAgents = instrumentingAgents; in appended()
55 InspectorAgentRegistry::InspectorAgentRegistry(InstrumentingAgents* instrumentingAgents, InspectorC… in InspectorAgentRegistry() argument
56 : m_instrumentingAgents(instrumentingAgents) in InspectorAgentRegistry()
DInjectedScriptHost.h64 void init(InstrumentingAgents* instrumentingAgents, ScriptDebugServer* scriptDebugServer) in init() argument
66 m_instrumentingAgents = instrumentingAgents; in init()
DInspectorInstrumentation.h79 InstrumentingAgents* instrumentingAgents() const { return m_instrumentingAgents.get(); } in instrumentingAgents() function
/external/chromium_org/third_party/WebKit/Source/core/testing/
DInternals.cpp1547 InstrumentingAgents* instrumentingAgents = instrumentationForPage(document->page()); in consoleMessageArgumentCounts() local
1548 if (!instrumentingAgents) in consoleMessageArgumentCounts()
1550 InspectorConsoleAgent* consoleAgent = instrumentingAgents->inspectorConsoleAgent(); in consoleMessageArgumentCounts()