OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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 : 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
()
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*);
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
45
WorkerRuntimeAgent::WorkerRuntimeAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager,
ScriptDebugServer
*
scriptDebugServer
, WorkerGlobalScope* workerGlobalScope)
46
: InspectorRuntimeAgent(instrumentingAgents, state, injectedScriptManager,
scriptDebugServer
)
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
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());
InspectorRuntimeAgent.cpp
39
#include "bindings/v8/
ScriptDebugServer
.h"
48
InspectorRuntimeAgent::InspectorRuntimeAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager,
ScriptDebugServer
*
scriptDebugServer
)
52
, m_scriptDebugServer(
scriptDebugServer
)
60
static
ScriptDebugServer
::PauseOnExceptionsState setPauseOnExceptionsState(
ScriptDebugServer
*
scriptDebugServer
,
ScriptDebugServer
::PauseOnExceptionsState newState)
62
ASSERT(
scriptDebugServer
);
63
ScriptDebugServer
::PauseOnExceptionsState presentState = scriptDebugServer->pauseOnExceptionsState()
[
all
...]
WorkerDebuggerAgent.h
57
virtual WorkerScriptDebugServer&
scriptDebugServer
();
InspectorDebuggerAgent.cpp
34
#include "bindings/v8/
ScriptDebugServer
.h"
113
m_state->setLong(DebuggerAgentState::pauseOnExceptionsState,
ScriptDebugServer
::DontPauseOnExceptions);
126
scriptDebugServer
().setBreakpointsActivated(true);
136
m_state->setLong(DebuggerAgentState::pauseOnExceptionsState,
ScriptDebugServer
::DontPauseOnExceptions);
142
scriptDebugServer
().clearBreakpoints();
143
scriptDebugServer
().clearCompiledScripts();
227
scriptDebugServer
().setBreakpointsActivated(active);
248
return
scriptDebugServer
().isPaused();
253
return
scriptDebugServer
().runningNestedMessageLoop();
258
if (source == ConsoleAPIMessageSource && type == AssertMessageType &&
scriptDebugServer
().pauseOnExceptionsState() != ScriptDebugServer::DontPauseOnExceptions
[
all
...]
PageDebuggerAgent.h
68
virtual PageScriptDebugServer&
scriptDebugServer
();
PageRuntimeAgent.cpp
54
PageRuntimeAgent::PageRuntimeAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager,
ScriptDebugServer
*
scriptDebugServer
, Page* page, InspectorPageAgent* pageAgent)
55
: InspectorRuntimeAgent(instrumentingAgents, state, injectedScriptManager,
scriptDebugServer
)
InspectorDebuggerAgent.h
57
class
ScriptDebugServer
;
156
virtual
ScriptDebugServer
&
scriptDebugServer
() = 0;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp
42
#include "bindings/v8/
ScriptDebugServer
.h"
224
ScriptDebugServer
& debugServer = host->
scriptDebugServer
();
240
ScriptDebugServer
& debugServer = host->
scriptDebugServer
();
372
ScriptDebugServer
& debugServer = host->
scriptDebugServer
();
Completed in 1065 milliseconds