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/v8/ScriptDebugServer.h"
58 class RunInspectorCommandsTask FINAL : public ScriptDebugServer::Task {
76 PassOwnPtr<WorkerDebuggerAgent> WorkerDebuggerAgent::create(WorkerScriptDebugServer* scriptDebugServer, WorkerGlobalScope* inspectedWorkerGlobalScope, InjectedScriptManager* injectedScriptManager)
78 return adoptPtr(new WorkerDebuggerAgent(scriptDebugServer, inspectedWorkerGlobalScope, injectedScriptManager));
81 WorkerDebuggerAgent::WorkerDebuggerAgent(WorkerScriptDebugServer* scriptDebugServer, WorkerGlobalScope* inspectedWorkerGlobalScope, InjectedScriptManager* injectedScriptManager)
83 , m_scriptDebugServer(scriptDebugServer)
107 scriptDebugServer().addListener(this);
112 scriptDebugServer().removeListener(this);
115 WorkerScriptDebugServer& WorkerDebuggerAgent::scriptDebugServer()
WorkerRuntimeAgent.h 43 static PassOwnPtr<WorkerRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* context)
45 return adoptPtr(new WorkerRuntimeAgent(injectedScriptManager, scriptDebugServer, context));
59 WorkerRuntimeAgent(InjectedScriptManager*, ScriptDebugServer*, WorkerGlobalScope*);
PageRuntimeAgent.h 46 static PassOwnPtr<PageRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
48 return adoptPtr(new PageRuntimeAgent(injectedScriptManager, scriptDebugServer, page, pageAgent));
59 PageRuntimeAgent(InjectedScriptManager*, ScriptDebugServer*, Page*, InspectorPageAgent*);
InjectedScriptHost.h 48 class ScriptDebugServer;
64 void init(InstrumentingAgents* instrumentingAgents, ScriptDebugServer* scriptDebugServer)
67 m_scriptDebugServer = scriptDebugServer;
94 ScriptDebugServer& scriptDebugServer() { return *m_scriptDebugServer; }
100 ScriptDebugServer* m_scriptDebugServer;
PageDebuggerAgent.cpp 79 scriptDebugServer().addListener(this, m_pageAgent->page());
84 scriptDebugServer().removeListener(this, m_pageAgent->page());
87 PageScriptDebugServer& PageDebuggerAgent::scriptDebugServer()
138 scriptDebugServer().setPreprocessorSource(String());
141 scriptDebugServer().setPreprocessorSource(m_pageAgent->scriptPreprocessorSource());
InspectorDebuggerAgent.cpp 34 #include "bindings/v8/ScriptDebugServer.h"
125 m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, ScriptDebugServer::DontPauseOnExceptions);
134 scriptDebugServer().setBreakpointsActivated(true);
143 m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, ScriptDebugServer::DontPauseOnExceptions);
148 scriptDebugServer().clearBreakpoints();
149 scriptDebugServer().clearCompiledScripts();
234 scriptDebugServer().setBreakpointsActivated(active);
255 return scriptDebugServer().isPaused();
260 return scriptDebugServer().runningNestedMessageLoop();
265 if (source == ConsoleAPIMessageSource && type == AssertMessageType && scriptDebugServer().pauseOnExceptionsState() != ScriptDebugServer::DontPauseOnExceptions
    [all...]
WorkerDebuggerAgent.h 56 virtual WorkerScriptDebugServer& scriptDebugServer() OVERRIDE;
WorkerRuntimeAgent.cpp 45 WorkerRuntimeAgent::WorkerRuntimeAgent(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, WorkerGlobalScope* workerGlobalScope)
46 : InspectorRuntimeAgent(injectedScriptManager, scriptDebugServer)
InspectorRuntimeAgent.cpp 34 #include "bindings/v8/ScriptDebugServer.h"
54 InspectorRuntimeAgent::InspectorRuntimeAgent(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer)
59 , m_scriptDebugServer(scriptDebugServer)
67 static ScriptDebugServer::PauseOnExceptionsState setPauseOnExceptionsState(ScriptDebugServer* scriptDebugServer, ScriptDebugServer::PauseOnExceptionsState newState)
69 ASSERT(scriptDebugServer);
70 ScriptDebugServer::PauseOnExceptionsState presentState = scriptDebugServer->pauseOnExceptionsState()
    [all...]
PageRuntimeAgent.cpp 48 PageRuntimeAgent::PageRuntimeAgent(InjectedScriptManager* injectedScriptManager, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
49 : InspectorRuntimeAgent(injectedScriptManager, scriptDebugServer)
PageDebuggerAgent.h 68 virtual PageScriptDebugServer& scriptDebugServer() OVERRIDE;
InspectorDebuggerAgent.h 65 class ScriptDebugServer;
177 virtual ScriptDebugServer& scriptDebugServer() = 0;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 43 #include "bindings/v8/ScriptDebugServer.h"
222 ScriptDebugServer& debugServer = host->scriptDebugServer();
238 ScriptDebugServer& debugServer = host->scriptDebugServer();
350 ScriptDebugServer& debugServer = host->scriptDebugServer();
432 ScriptDebugServer& debugServer = host->scriptDebugServer();

Completed in 240 milliseconds