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

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
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...]
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...]

Completed in 193 milliseconds