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

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
WorkerDebuggerAgent.cpp 34 #include "bindings/core/v8/ScriptDebugServer.h"
44 class RunInspectorCommandsTask FINAL : public ScriptDebugServer::Task {
64 PassOwnPtrWillBeRawPtr<WorkerDebuggerAgent> WorkerDebuggerAgent::create(WorkerScriptDebugServer* scriptDebugServer, WorkerGlobalScope* inspectedWorkerGlobalScope, InjectedScriptManager* injectedScriptManager)
66 return adoptPtrWillBeNoop(new WorkerDebuggerAgent(scriptDebugServer, inspectedWorkerGlobalScope, injectedScriptManager));
69 WorkerDebuggerAgent::WorkerDebuggerAgent(WorkerScriptDebugServer* scriptDebugServer, WorkerGlobalScope* inspectedWorkerGlobalScope, InjectedScriptManager* injectedScriptManager)
71 , m_scriptDebugServer(scriptDebugServer)
88 scriptDebugServer().interruptAndRunTask(adoptPtr(new RunInspectorCommandsTask(m_inspectedWorkerGlobalScope->thread())));
93 scriptDebugServer().addListener(this);
98 scriptDebugServer().removeListener(this);
101 WorkerScriptDebugServer& WorkerDebuggerAgent::scriptDebugServer()
    [all...]
PageRuntimeAgent.h 47 static PassOwnPtrWillBeRawPtr<PageRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, InspectorClient* client, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
49 return adoptPtrWillBeNoop(new PageRuntimeAgent(injectedScriptManager, client, scriptDebugServer, page, pageAgent));
62 PageRuntimeAgent(InjectedScriptManager*, InspectorClient*, ScriptDebugServer*, Page*, InspectorPageAgent*);
WorkerRuntimeAgent.h 43 static PassOwnPtrWillBeRawPtr<WorkerRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* context)
45 return adoptPtrWillBeNoop(new WorkerRuntimeAgent(injectedScriptManager, scriptDebugServer, context));
60 WorkerRuntimeAgent(InjectedScriptManager*, ScriptDebugServer*, WorkerGlobalScope*);
InjectedScriptHost.h 48 class ScriptDebugServer;
66 void init(InstrumentingAgents* instrumentingAgents, ScriptDebugServer* scriptDebugServer)
69 m_scriptDebugServer = scriptDebugServer;
96 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; }
102 ScriptDebugServer* m_scriptDebugServer;
PageDebuggerAgent.cpp 85 scriptDebugServer().addListener(this, m_pageAgent->page());
90 scriptDebugServer().removeListener(this, m_pageAgent->page());
93 PageScriptDebugServer& PageDebuggerAgent::scriptDebugServer()
144 scriptDebugServer().setPreprocessorSource(String());
147 scriptDebugServer().setPreprocessorSource(m_pageAgent->scriptPreprocessorSource());
WorkerDebuggerAgent.h 59 virtual WorkerScriptDebugServer& scriptDebugServer() OVERRIDE;
WorkerRuntimeAgent.cpp 44 WorkerRuntimeAgent::WorkerRuntimeAgent(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* workerGlobalScope)
45 : InspectorRuntimeAgent(injectedScriptManager, scriptDebugServer)
InspectorDebuggerAgent.cpp 33 #include "bindings/core/v8/ScriptDebugServer.h"
148 m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, ScriptDebugServer::DontPauseOnExceptions);
157 scriptDebugServer().setBreakpointsActivated(true);
166 m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, ScriptDebugServer::DontPauseOnExceptions);
173 scriptDebugServer().clearBreakpoints();
174 scriptDebugServer().clearCompiledScripts();
175 scriptDebugServer().clearPreprocessor();
262 scriptDebugServer().setBreakpointsActivated(active);
282 return scriptDebugServer().isPaused();
287 return scriptDebugServer().runningNestedMessageLoop()
    [all...]
PageDebuggerAgent.h 68 virtual PageScriptDebugServer& scriptDebugServer() OVERRIDE;
InspectorRuntimeAgent.cpp 35 #include "bindings/core/v8/ScriptDebugServer.h"
50 InspectorRuntimeAgent::InspectorRuntimeAgent(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer)
55 , m_scriptDebugServer(scriptDebugServer)
69 static ScriptDebugServer::PauseOnExceptionsState setPauseOnExceptionsState(ScriptDebugServer* scriptDebugServer, ScriptDebugServer::PauseOnExceptionsState newState)
71 ASSERT(scriptDebugServer);
72 ScriptDebugServer::PauseOnExceptionsState presentState = scriptDebugServer->pauseOnExceptionsState()
    [all...]
PageRuntimeAgent.cpp 49 PageRuntimeAgent::PageRuntimeAgent(InjectedScriptManager* injectedScriptManager, InspectorClient* client, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
50 : InspectorRuntimeAgent(injectedScriptManager, scriptDebugServer)
InspectorDebuggerAgent.h 69 class ScriptDebugServer;
202 virtual ScriptDebugServer& scriptDebugServer() = 0;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8InjectedScriptHostCustom.cpp 36 #include "bindings/core/v8/ScriptDebugServer.h"
216 ScriptDebugServer& debugServer = host->scriptDebugServer();
232 ScriptDebugServer& debugServer = host->scriptDebugServer();
244 ScriptDebugServer& debugServer = host->scriptDebugServer();
388 ScriptDebugServer& debugServer = host->scriptDebugServer();
495 ScriptDebugServer& debugServer = host->scriptDebugServer()
    [all...]

Completed in 323 milliseconds