OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScriptDebugListener
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
WorkerScriptDebugServer.h
51
void addListener(
ScriptDebugListener
*);
52
void removeListener(
ScriptDebugListener
*);
57
virtual
ScriptDebugListener
* getDebugListenerForContext(v8::Handle<v8::Context>);
61
typedef HashMap<WorkerGlobalScope*,
ScriptDebugListener
*> ListenersMap;
62
ScriptDebugListener
* m_listener;
PageScriptDebugServer.h
47
void addListener(
ScriptDebugListener
*, Page*);
48
void removeListener(
ScriptDebugListener
*, Page*);
66
virtual
ScriptDebugListener
* getDebugListenerForContext(v8::Handle<v8::Context>);
70
typedef HashMap<Page*,
ScriptDebugListener
*> ListenersMap;
WorkerScriptDebugServer.cpp
35
#include "core/inspector/
ScriptDebugListener
.h"
54
void WorkerScriptDebugServer::addListener(
ScriptDebugListener
* listener)
78
void WorkerScriptDebugServer::removeListener(
ScriptDebugListener
* listener)
91
ScriptDebugListener
* WorkerScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context>)
ScriptDebugServer.h
38
#include "core/inspector/
ScriptDebugListener
.h"
49
class
ScriptDebugListener
;
110
virtual
ScriptDebugListener
* getDebugListenerForContext(v8::Handle<v8::Context>) = 0;
121
void dispatchDidParseSource(
ScriptDebugListener
* listener, v8::Handle<v8::Object> sourceObject);
140
bool executeSkipPauseRequest(
ScriptDebugListener
::SkipPauseRequest, v8::Handle<v8::Object> executionState);
PageScriptDebugServer.cpp
41
#include "core/inspector/
ScriptDebugListener
.h"
79
void PageScriptDebugServer::addListener(
ScriptDebugListener
* listener, Page* page)
112
void PageScriptDebugServer::removeListener(
ScriptDebugListener
* listener, Page* page)
164
ScriptDebugListener
* PageScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context> context)
183
if (
ScriptDebugListener
* listener = m_listenersMap.get(m_pausedPage))
ScriptDebugServer.cpp
41
#include "core/inspector/
ScriptDebugListener
.h"
434
ScriptDebugListener
* listener = getDebugListenerForContext(m_pausedContext);
467
bool ScriptDebugServer::executeSkipPauseRequest(
ScriptDebugListener
::SkipPauseRequest request, v8::Handle<v8::Object> executionState)
471
case
ScriptDebugListener
::NoSkip:
473
case
ScriptDebugListener
::Continue:
475
case
ScriptDebugListener
::StepInto:
477
case
ScriptDebugListener
::StepOut:
501
ScriptDebugListener
* listener = getDebugListenerForContext(eventContext);
556
ScriptDebugListener
::SkipPauseRequest skipRequest;
570
void ScriptDebugServer::dispatchDidParseSource(
ScriptDebugListener
* listener, v8::Handle<v8::Object> object
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptDebugListener.h
43
class
ScriptDebugListener
{
66
virtual ~
ScriptDebugListener
() { }
InspectorDebuggerAgent.cpp
425
ScriptDebugListener
::SkipPauseRequest InspectorDebuggerAgent::shouldSkipExceptionPause(RefPtr<JavaScriptCallFrame>& topFrame)
429
return
ScriptDebugListener
::Continue;
437
return
ScriptDebugListener
::NoSkip;
465
return
ScriptDebugListener
::Continue;
468
return
ScriptDebugListener
::NoSkip;
471
ScriptDebugListener
::SkipPauseRequest InspectorDebuggerAgent::shouldSkipBreakpointPause(RefPtr<JavaScriptCallFrame>& topFrame)
473
return
ScriptDebugListener
::NoSkip;
476
ScriptDebugListener
::SkipPauseRequest InspectorDebuggerAgent::shouldSkipStepPause(RefPtr<JavaScriptCallFrame>& topFrame)
483
return
ScriptDebugListener
::StepInto;
485
return
ScriptDebugListener
::StepOut
[
all
...]
InspectorDebuggerAgent.h
39
#include "core/inspector/
ScriptDebugListener
.h"
61
class InspectorDebuggerAgent : public InspectorBaseAgent<InspectorDebuggerAgent>, public
ScriptDebugListener
, public InspectorBackendDispatcher::DebuggerCommandHandler {
Completed in 578 milliseconds