HomeSort by relevance Sort by last modified time
    Searched refs:instrumentingAgents (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentationCustomInl.h 38 bool isDebuggerPausedImpl(InstrumentingAgents*);
39 bool collectingHTMLParseErrorsImpl(InstrumentingAgents*);
40 PassOwnPtr<ScriptSourceCode> preprocessImpl(InstrumentingAgents*, LocalFrame*, const ScriptSourceCode&);
41 String preprocessEventListenerImpl(InstrumentingAgents*, LocalFrame*, const String& source, const String& url, const String& functionName);
51 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(frame))
52 return isDebuggerPausedImpl(instrumentingAgents);
59 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(page))
60 return collectingHTMLParseErrorsImpl(instrumentingAgents);
    [all...]
InspectorInstrumentation.cpp 44 #include "core/inspector/InstrumentingAgents.h"
54 static HashSet<InstrumentingAgents*>* instrumentingAgentsSet = 0;
67 InspectorInstrumentationCookie::InspectorInstrumentationCookie(InstrumentingAgents* agents, int timelineAgentId)
94 bool isDebuggerPausedImpl(InstrumentingAgents* instrumentingAgents)
96 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
120 HashSet<InstrumentingAgents*>::iterator end = instrumentingAgentsSet->end();
121 for (HashSet<InstrumentingAgents*>::iterator it = instrumentingAgentsSet->begin(); it != end; ++it) {
122 InstrumentingAgents* instrumentingAgents = *it
    [all...]
InspectorBaseAgent.cpp 57 void InspectorAgent::appended(InstrumentingAgents* instrumentingAgents, InspectorState* inspectorState)
59 m_instrumentingAgents = instrumentingAgents;
64 InspectorAgentRegistry::InspectorAgentRegistry(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState)
65 : m_instrumentingAgents(instrumentingAgents)
InjectedScriptHost.h 45 class InstrumentingAgents;
66 void init(InstrumentingAgents* instrumentingAgents, ScriptDebugServer* scriptDebugServer)
68 m_instrumentingAgents = instrumentingAgents;
101 RawPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
InspectorInstrumentation.h 62 class InstrumentingAgents;
73 InspectorInstrumentationCookie(InstrumentingAgents*, int);
78 InstrumentingAgents* instrumentingAgents() const { return m_instrumentingAgents.get(); }
83 RefPtrWillBePersistent<InstrumentingAgents> m_instrumentingAgents;
101 void registerInstrumentingAgents(InstrumentingAgents*);
102 void unregisterInstrumentingAgents(InstrumentingAgents*);
107 InstrumentingAgents* instrumentingAgentsFor(Page*);
108 InstrumentingAgents* instrumentingAgentsFor(LocalFrame*);
109 InstrumentingAgents* instrumentingAgentsFor(EventTarget*)
    [all...]

Completed in 65 milliseconds