Searched refs:m_instrumentingAgents (Results 1 - 25 of 25) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorInstrumentationCookie.cpp41 : m_instrumentingAgents(nullptr)
47 : m_instrumentingAgents(agents)
53 : m_instrumentingAgents(other.m_instrumentingAgents)
61 m_instrumentingAgents = other.m_instrumentingAgents;
H A DWebDebuggerAgent.cpp39 , m_instrumentingAgents(instrumentingAgents)
46 m_instrumentingAgents->setInspectorDebuggerAgent(this);
52 m_instrumentingAgents->setInspectorDebuggerAgent(nullptr);
H A DWebProfilerAgent.cpp39 , m_instrumentingAgents(instrumentingAgents)
46 m_instrumentingAgents->setInspectorProfilerAgent(this);
52 m_instrumentingAgents->setInspectorProfilerAgent(nullptr);
H A DInspectorInstrumentationCookie.h50 bool isValid() const { return !!m_instrumentingAgents; }
51 InstrumentingAgents* instrumentingAgents() const { return m_instrumentingAgents.get(); }
55 RefPtr<InstrumentingAgents> m_instrumentingAgents; member in class:WebCore::InspectorInstrumentationCookie
H A DInspectorWebAgentBase.h42 , m_instrumentingAgents(instrumentingAgents)
46 InstrumentingAgents* m_instrumentingAgents; member in class:WebCore::InspectorAgentBase
H A DInspectorController.cpp84 : m_instrumentingAgents(InstrumentingAgents::create(*this))
99 m_instrumentingAgents->setInspectorAgent(m_inspectorAgent);
102 auto pageAgentPtr = std::make_unique<InspectorPageAgent>(m_instrumentingAgents.get(), &page, inspectorClient, m_overlay.get());
109 m_instrumentingAgents->setPageRuntimeAgent(runtimeAgent);
112 auto domAgentPtr = std::make_unique<InspectorDOMAgent>(m_instrumentingAgents.get(), pageAgent, m_injectedScriptManager.get(), m_overlay.get());
116 m_agents.append(std::make_unique<InspectorCSSAgent>(m_instrumentingAgents.get(), m_domAgent));
119 auto databaseAgentPtr = std::make_unique<InspectorDatabaseAgent>(m_instrumentingAgents.get());
125 m_agents.append(std::make_unique<InspectorIndexedDBAgent>(m_instrumentingAgents.get(), m_injectedScriptManager.get(), pageAgent));
129 m_agents.append(std::make_unique<InspectorReplayAgent>(m_instrumentingAgents.get(), pageAgent));
132 auto domStorageAgentPtr = std::make_unique<InspectorDOMStorageAgent>(m_instrumentingAgents
[all...]
H A DWebDebuggerAgent.h49 InstrumentingAgents* m_instrumentingAgents; member in class:WebCore::WebDebuggerAgent
H A DWebProfilerAgent.h48 InstrumentingAgents* m_instrumentingAgents; member in class:WebCore::WebProfilerAgent
H A DWorkerInspectorController.cpp82 , m_instrumentingAgents(InstrumentingAgents::create(*this))
88 m_instrumentingAgents->setWorkerRuntimeAgent(m_runtimeAgent);
92 m_instrumentingAgents->setWebConsoleAgent(consoleAgent.get());
94 auto debuggerAgent = std::make_unique<WorkerDebuggerAgent>(m_injectedScriptManager.get(), m_instrumentingAgents.get(), &workerGlobalScope);
98 auto profilerAgent = std::make_unique<WorkerProfilerAgent>(m_instrumentingAgents.get(), &workerGlobalScope);
102 m_agents.append(std::make_unique<InspectorTimelineAgent>(m_instrumentingAgents.get(), nullptr, InspectorTimelineAgent::WorkerInspector, nullptr));
119 m_instrumentingAgents->reset();
H A DInstrumentingAgents.cpp107 return page ? page->inspectorController().m_instrumentingAgents.get() : nullptr;
112 return workerGlobalScope ? workerGlobalScope->workerInspectorController().m_instrumentingAgents.get() : nullptr;
H A DPageDebuggerAgent.cpp64 m_instrumentingAgents->setPageDebuggerAgent(this);
70 m_instrumentingAgents->setPageDebuggerAgent(nullptr);
H A DWorkerInspectorController.h81 RefPtr<InstrumentingAgents> m_instrumentingAgents; member in class:WebCore::final
H A DInspectorWorkerAgent.cpp110 m_instrumentingAgents->setInspectorWorkerAgent(this);
115 m_instrumentingAgents->setInspectorWorkerAgent(nullptr);
H A DInspectorLayerTreeAgent.cpp86 m_instrumentingAgents->setInspectorLayerTreeAgent(this);
91 m_instrumentingAgents->setInspectorLayerTreeAgent(nullptr);
113 Node* node = m_instrumentingAgents->inspectorDOMAgent()->nodeForId(nodeId);
211 InspectorDOMAgent* domAgent = m_instrumentingAgents->inspectorDOMAgent();
H A DInspectorDOMStorageAgent.cpp64 m_instrumentingAgents->setInspectorDOMStorageAgent(this);
69 m_instrumentingAgents->setInspectorDOMStorageAgent(nullptr);
70 m_instrumentingAgents = nullptr;
H A DInspectorApplicationCacheAgent.cpp66 m_instrumentingAgents->setInspectorApplicationCacheAgent(nullptr);
71 m_instrumentingAgents->setInspectorApplicationCacheAgent(this);
H A DInspectorDOMDebuggerAgent.cpp78 ASSERT(!m_instrumentingAgents->inspectorDOMDebuggerAgent());
84 m_instrumentingAgents->setInspectorDOMDebuggerAgent(this);
104 m_instrumentingAgents->setInspectorDOMDebuggerAgent(nullptr);
H A DInspectorController.h137 RefPtr<InstrumentingAgents> m_instrumentingAgents; member in class:WebCore::final
H A DInspectorDatabaseAgent.cpp217 m_instrumentingAgents->setInspectorDatabaseAgent(this);
222 m_instrumentingAgents->setInspectorDatabaseAgent(nullptr);
H A DInspectorReplayAgent.cpp165 m_instrumentingAgents->setInspectorReplayAgent(this);
182 m_instrumentingAgents->setInspectorReplayAgent(nullptr);
H A DInspectorTimelineAgent.cpp78 m_instrumentingAgents->setPersistentInspectorTimelineAgent(this);
89 m_instrumentingAgents->setPersistentInspectorTimelineAgent(nullptr);
123 m_instrumentingAgents->setInspectorTimelineAgent(this);
139 m_instrumentingAgents->setInspectorTimelineAgent(nullptr);
H A DInspectorResourceAgent.cpp276 ASSERT(!m_instrumentingAgents->inspectorResourceAgent());
643 m_instrumentingAgents->setInspectorResourceAgent(this);
649 m_instrumentingAgents->setInspectorResourceAgent(nullptr);
H A DInspectorPageAgent.cpp378 m_instrumentingAgents->setInspectorPageAgent(this);
388 m_instrumentingAgents->setInspectorPageAgent(nullptr);
1051 InspectorDOMAgent* domAgent = m_instrumentingAgents->inspectorDOMAgent();
H A DInspectorCSSAgent.cpp490 m_instrumentingAgents->setInspectorCSSAgent(this);
495 m_instrumentingAgents->setInspectorCSSAgent(nullptr);
H A DInspectorDOMAgent.cpp242 m_instrumentingAgents->setInspectorDOMAgent(this);
261 m_instrumentingAgents->setInspectorDOMAgent(0);

Completed in 224 milliseconds