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

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptHost.h 45 class ScriptDebugServer;
61 void init(InstrumentingAgents* instrumentingAgents, ScriptDebugServer* scriptDebugServer)
64 m_scriptDebugServer = scriptDebugServer;
93 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; }
99 ScriptDebugServer* m_scriptDebugServer;
PageDebuggerAgent.cpp 76 scriptDebugServer().addListener(this, m_pageAgent->page());
81 scriptDebugServer().removeListener(this, m_pageAgent->page());
84 PageScriptDebugServer& PageDebuggerAgent::scriptDebugServer()
139 scriptDebugServer().setScriptPreprocessor(m_pageAgent->scriptPreprocessor());
WorkerDebuggerAgent.cpp 34 #include "bindings/v8/ScriptDebugServer.h"
58 class RunInspectorCommandsTask : public ScriptDebugServer::Task {
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)
88 , m_scriptDebugServer(scriptDebugServer)
112 scriptDebugServer().addListener(this);
117 scriptDebugServer().removeListener(this);
120 WorkerScriptDebugServer& WorkerDebuggerAgent::scriptDebugServer()

Completed in 590 milliseconds