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

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorWorkerAgent.h 47 class InspectorWorkerAgent : public InspectorBaseAgent<InspectorWorkerAgent>, public InspectorBackendDispatcher::WorkerCommandHandler {
49 static PassOwnPtr<InspectorWorkerAgent> create(InstrumentingAgents*, InspectorCompositeState*);
50 ~InspectorWorkerAgent();
71 InspectorWorkerAgent(InstrumentingAgents*, InspectorCompositeState*);
InspectorWorkerAgent.cpp 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(
    [all...]

Completed in 235 milliseconds