Home | History | Annotate | Download | only in inspector

Lines Matching defs:InspectorWorkerAgent

33 #include "core/inspector/InspectorWorkerAgent.h"
52 class InspectorWorkerAgent::WorkerFrontendChannel : public WorkerGlobalScopeProxy::PageInspector {
106 int InspectorWorkerAgent::WorkerFrontendChannel::s_nextId = 1;
108 PassOwnPtr<InspectorWorkerAgent> InspectorWorkerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState)
110 return adoptPtr(new InspectorWorkerAgent(instrumentingAgents, inspectorState));
113 InspectorWorkerAgent::InspectorWorkerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState)
114 : InspectorBaseAgent<InspectorWorkerAgent>("Worker", instrumentingAgents, inspectorState)
120 InspectorWorkerAgent::~InspectorWorkerAgent()
125 void InspectorWorkerAgent::setFrontend(InspectorFrontend* frontend)
130 void InspectorWorkerAgent::restore()
136 void InspectorWorkerAgent::clearFrontend()
143 void InspectorWorkerAgent::enable(ErrorString*)
151 void InspectorWorkerAgent::disable(ErrorString*)
159 void InspectorWorkerAgent::canInspectWorkers(ErrorString*, bool* result)
164 void InspectorWorkerAgent::connectToWorker(ErrorString* error, int workerId)
173 void InspectorWorkerAgent::disconnectFromWorker(ErrorString* error, int workerId)
182 void InspectorWorkerAgent::sendMessageToWorker(ErrorString* error, int workerId, const RefPtr<JSONObject>& message)
191 void InspectorWorkerAgent::setAutoconnectToWorkers(ErrorString*, bool value)
196 bool InspectorWorkerAgent::shouldPauseDedicatedWorkerOnStart()
201 void InspectorWorkerAgent::didStartWorkerGlobalScope(WorkerGlobalScopeProxy* workerGlobalScopeProxy, const KURL& url)
208 void InspectorWorkerAgent::workerGlobalScopeTerminated(WorkerGlobalScopeProxy* proxy)
221 void InspectorWorkerAgent::createWorkerFrontendChannelsForExistingWorkers()
227 void InspectorWorkerAgent::destroyWorkerFrontendChannels()
236 void InspectorWorkerAgent::createWorkerFrontendChannel(WorkerGlobalScopeProxy* workerGlobalScopeProxy, const String& url)