HomeSort by relevance Sort by last modified time
    Searched full:instrumentingagents (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentation.cpp 43 #include "core/inspector/InstrumentingAgents.h"
50 static HashSet<InstrumentingAgents*>* instrumentingAgentsSet = 0;
63 InspectorInstrumentationCookie::InspectorInstrumentationCookie(InstrumentingAgents* agents, int timelineAgentId)
90 bool isDebuggerPausedImpl(InstrumentingAgents* instrumentingAgents)
92 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
97 void continueAfterPingLoaderImpl(InstrumentingAgents* instrumentingAgents, unsigned long identifier, DocumentLoader* loader, ResourceRequest& request, const ResourceResponse& response)
99 willSendRequestImpl(instrumentingAgents, identifier, loader, request, response, FetchInitiatorInfo());
126 HashSet<InstrumentingAgents*>::iterator end = instrumentingAgentsSet->end()
    [all...]
InspectorInstrumentationCustomInl.h 38 bool isDebuggerPausedImpl(InstrumentingAgents*);
39 bool collectingHTMLParseErrorsImpl(InstrumentingAgents*);
40 PassOwnPtr<ScriptSourceCode> preprocessImpl(InstrumentingAgents*, Frame*, const ScriptSourceCode&);
41 String preprocessEventListenerImpl(InstrumentingAgents*, Frame*, const String& source, const String& url, const String& functionName);
50 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(frame))
51 return isDebuggerPausedImpl(instrumentingAgents);
58 if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(page))
59 return collectingHTMLParseErrorsImpl(instrumentingAgents);
    [all...]
InspectorInstrumentation.h 64 class InstrumentingAgents;
76 InspectorInstrumentationCookie(InstrumentingAgents*, int);
81 InstrumentingAgents* instrumentingAgents() const { return m_instrumentingAgents.get(); }
86 RefPtr<InstrumentingAgents> m_instrumentingAgents;
104 void registerInstrumentingAgents(InstrumentingAgents*);
105 void unregisterInstrumentingAgents(InstrumentingAgents*);
110 InstrumentingAgents* instrumentingAgentsFor(Page*);
111 InstrumentingAgents* instrumentingAgentsFor(Frame*);
112 InstrumentingAgents* instrumentingAgentsFor(ExecutionContext*)
    [all...]
InspectorMemoryAgent.h 40 class InstrumentingAgents;
47 static PassOwnPtr<InspectorMemoryAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state)
49 return adoptPtr(new InspectorMemoryAgent(instrumentingAgents, state));
59 InspectorMemoryAgent(InstrumentingAgents*, InspectorCompositeState*);
InspectorBaseAgent.h 44 class InstrumentingAgents;
48 InspectorBaseAgentInterface(const String&, InstrumentingAgents*, InspectorCompositeState*);
60 InstrumentingAgents* m_instrumentingAgents;
92 InspectorBaseAgent(const String& name, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState)
93 : InspectorBaseAgentInterface(name, instrumentingAgents, inspectorState)
PageConsoleAgent.h 44 static PassOwnPtr<PageConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent, InspectorTimelineAgent* timelineAgent)
46 return adoptPtr(new PageConsoleAgent(instrumentingAgents, state, injectedScriptManager, domAgent, timelineAgent));
53 PageConsoleAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, InspectorDOMAgent*, InspectorTimelineAgent*);
WorkerConsoleAgent.h 42 static PassOwnPtr<WorkerConsoleAgent> create(InstrumentingAgents* instrumentingAgents, InspectorTimelineAgent* timelineAgent, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager)
44 return adoptPtr(new WorkerConsoleAgent(instrumentingAgents, timelineAgent, state, injectedScriptManager));
51 WorkerConsoleAgent(InstrumentingAgents*, InspectorTimelineAgent*, InspectorCompositeState*, InjectedScriptManager*);
WorkerRuntimeAgent.h 43 static PassOwnPtr<WorkerRuntimeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* context)
45 return adoptPtr(new WorkerRuntimeAgent(instrumentingAgents, state, injectedScriptManager, scriptDebugServer, context));
55 WorkerRuntimeAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, ScriptDebugServer*, WorkerGlobalScope*);
InspectorAgent.h 45 class InstrumentingAgents;
54 static PassOwnPtr<InspectorAgent> create(Page* page, InjectedScriptManager* injectedScriptManager, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state)
56 return adoptPtr(new InspectorAgent(page, injectedScriptManager, instrumentingAgents, state));
84 InspectorAgent(Page*, InjectedScriptManager*, InstrumentingAgents*, InspectorCompositeState*);
InspectorApplicationCacheAgent.h 39 class InstrumentingAgents;
46 static PassOwnPtr<InspectorApplicationCacheAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorPageAgent* pageAgent)
48 return adoptPtr(new InspectorApplicationCacheAgent(instrumentingAgents, state, pageAgent));
68 InspectorApplicationCacheAgent(InstrumentingAgents*, InspectorCompositeState*, InspectorPageAgent*);
InspectorDOMStorageAgent.h 42 class InstrumentingAgents;
51 static PassOwnPtr<InspectorDOMStorageAgent> create(InstrumentingAgents* instrumentingAgents, InspectorPageAgent* pageAgent, InspectorCompositeState* state)
53 return adoptPtr(new InspectorDOMStorageAgent(instrumentingAgents, pageAgent, state));
76 InspectorDOMStorageAgent(InstrumentingAgents*, InspectorPageAgent*, InspectorCompositeState*);
InspectorDatabaseAgent.h 45 class InstrumentingAgents;
51 static PassOwnPtr<InspectorDatabaseAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state)
53 return adoptPtr(new InspectorDatabaseAgent(instrumentingAgents, state));
74 explicit InspectorDatabaseAgent(InstrumentingAgents*, InspectorCompositeState*);
PageDebuggerAgent.cpp 39 #include "core/inspector/InstrumentingAgents.h"
47 PassOwnPtr<PageDebuggerAgent> PageDebuggerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
49 return adoptPtr(new PageDebuggerAgent(instrumentingAgents, inspectorState, pageScriptDebugServer, pageAgent, injectedScriptManager, overlay));
52 PageDebuggerAgent::PageDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, PageScriptDebugServer* pageScriptDebugServer, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager, InspectorOverlay* overlay)
53 : InspectorDebuggerAgent(instrumentingAgents, inspectorState, injectedScriptManager)
WorkerDebuggerAgent.cpp 81 PassOwnPtr<WorkerDebuggerAgent> WorkerDebuggerAgent::create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, WorkerScriptDebugServer* scriptDebugServer, WorkerGlobalScope* inspectedWorkerGlobalScope, InjectedScriptManager* injectedScriptManager)
83 return adoptPtr(new WorkerDebuggerAgent(instrumentingAgents, inspectorState, scriptDebugServer, inspectedWorkerGlobalScope, injectedScriptManager));
86 WorkerDebuggerAgent::WorkerDebuggerAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, WorkerScriptDebugServer* scriptDebugServer, WorkerGlobalScope* inspectedWorkerGlobalScope, InjectedScriptManager* injectedScriptManager)
87 : InspectorDebuggerAgent(instrumentingAgents, inspectorState, injectedScriptManager)
WorkerConsoleAgent.cpp 37 WorkerConsoleAgent::WorkerConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorTimelineAgent* timelineAgent, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager)
38 : InspectorConsoleAgent(instrumentingAgents, timelineAgent, state, injectedScriptManager)
InspectorIndexedDBAgent.h 47 static PassOwnPtr<InspectorIndexedDBAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, InspectorPageAgent* pageAgent)
49 return adoptPtr(new InspectorIndexedDBAgent(instrumentingAgents, state, injectedScriptManager, pageAgent));
65 InspectorIndexedDBAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, InspectorPageAgent*);
InspectorInputAgent.h 48 static PassOwnPtr<InspectorInputAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, Page* page, InspectorClient* client)
50 return adoptPtr(new InspectorInputAgent(instrumentingAgents, inspectorState, page, client));
61 InspectorInputAgent(InstrumentingAgents*, InspectorCompositeState*, Page*, InspectorClient*);
PageRuntimeAgent.h 47 static PassOwnPtr<PageRuntimeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
49 return adoptPtr(new PageRuntimeAgent(instrumentingAgents, state, injectedScriptManager, scriptDebugServer, page, pageAgent));
62 PageRuntimeAgent(InstrumentingAgents*, InspectorCompositeState*, InjectedScriptManager*, ScriptDebugServer*, Page*, InspectorPageAgent*);
WorkerRuntimeAgent.cpp 37 #include "core/inspector/InstrumentingAgents.h"
45 WorkerRuntimeAgent::WorkerRuntimeAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* workerGlobalScope)
46 : InspectorRuntimeAgent(instrumentingAgents, state, injectedScriptManager, scriptDebugServer)
InjectedScriptHost.h 42 class InstrumentingAgents;
61 void init(InstrumentingAgents* instrumentingAgents, ScriptDebugServer* scriptDebugServer)
63 m_instrumentingAgents = instrumentingAgents;
98 InstrumentingAgents* m_instrumentingAgents;
InspectorCanvasAgent.h 50 class InstrumentingAgents;
57 static PassOwnPtr<InspectorCanvasAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorPageAgent* pageAgent, InjectedScriptManager* injectedScriptManager)
59 return adoptPtr(new InspectorCanvasAgent(instrumentingAgents, state, pageAgent, injectedScriptManager));
89 InspectorCanvasAgent(InstrumentingAgents*, InspectorCompositeState*, InspectorPageAgent*, InjectedScriptManager*);
InspectorLayerTreeAgent.h 46 class InstrumentingAgents;
56 static PassOwnPtr<InspectorLayerTreeAgent> create(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InspectorDOMAgent* domAgent, Page* page)
58 return adoptPtr(new InspectorLayerTreeAgent(instrumentingAgents, state, domAgent, page));
82 InspectorLayerTreeAgent(InstrumentingAgents*, InspectorCompositeState*, InspectorDOMAgent*, Page*);
InspectorWorkerAgent.cpp 37 #include "core/inspector/InstrumentingAgents.h"
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)
InspectorBaseAgent.cpp 39 InspectorBaseAgentInterface::InspectorBaseAgentInterface(const String& name, InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState)
40 : m_instrumentingAgents(instrumentingAgents)
InspectorMemoryAgent.cpp 50 InspectorMemoryAgent::InspectorMemoryAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state)
51 : InspectorBaseAgent<InspectorMemoryAgent>("Memory", instrumentingAgents, state)

Completed in 61 milliseconds

1 2 3