Home
last modified time | relevance | path

Searched refs:ScriptDebugListener (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DWorkerScriptDebugServer.h48 void addListener(ScriptDebugListener*);
49 void removeListener(ScriptDebugListener*);
54 virtual ScriptDebugListener* getDebugListenerForContext(v8::Handle<v8::Context>) OVERRIDE;
58 typedef HashMap<WorkerGlobalScope*, ScriptDebugListener*> ListenersMap;
59 ScriptDebugListener* m_listener;
DPageScriptDebugServer.h54 void addListener(ScriptDebugListener*, Page*);
55 void removeListener(ScriptDebugListener*, Page*);
83 virtual ScriptDebugListener* getDebugListenerForContext(v8::Handle<v8::Context>) OVERRIDE;
87 typedef HashMap<Page*, ScriptDebugListener*> ListenersMap;
DScriptDebugServer.h51 class ScriptDebugListener; variable
122 virtual ScriptDebugListener* getDebugListenerForContext(v8::Handle<v8::Context>) = 0;
132 …void dispatchDidParseSource(ScriptDebugListener*, v8::Handle<v8::Object> sourceObject, CompileResu…
157 …void handleV8AsyncTaskEvent(ScriptDebugListener*, ScriptState* pausedScriptState, v8::Handle<v8::O…
159 …void handleV8PromiseEvent(ScriptDebugListener*, ScriptState* pausedScriptState, v8::Handle<v8::Obj…
DWorkerScriptDebugServer.cpp53 void WorkerScriptDebugServer::addListener(ScriptDebugListener* listener) in addListener()
78 void WorkerScriptDebugServer::removeListener(ScriptDebugListener* listener) in removeListener()
92 ScriptDebugListener* WorkerScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context>) in getDebugListenerForContext()
DPageScriptDebugServer.cpp109 void PageScriptDebugServer::addListener(ScriptDebugListener* listener, Page* page) in addListener()
144 void PageScriptDebugServer::removeListener(ScriptDebugListener* listener, Page* page) in removeListener()
207 ScriptDebugListener* PageScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context> cont… in getDebugListenerForContext()
226 if (ScriptDebugListener* listener = m_listenersMap.get(m_pausedPage)) in runMessageLoopOnPause()
DScriptDebugServer.cpp441 ScriptDebugListener* listener = getDebugListenerForContext(pausedScriptState->context()); in handleProgramBreak()
457ScriptDebugListener::SkipPauseRequest result = listener->didPause(pausedScriptState, currentCallFr… in handleProgramBreak()
458 if (result == ScriptDebugListener::NoSkip) { in handleProgramBreak()
466 if (result == ScriptDebugListener::StepInto) { in handleProgramBreak()
469 } else if (result == ScriptDebugListener::StepOut) { in handleProgramBreak()
504 ScriptDebugListener* listener = getDebugListenerForContext(eventContext); in handleV8DebugEvent()
535 void ScriptDebugServer::handleV8AsyncTaskEvent(ScriptDebugListener* listener, ScriptState* pausedSc… in handleV8AsyncTaskEvent()
548 void ScriptDebugServer::handleV8PromiseEvent(ScriptDebugListener* listener, ScriptState* pausedScri… in handleV8PromiseEvent()
565 void ScriptDebugServer::dispatchDidParseSource(ScriptDebugListener* listener, v8::Handle<v8::Object… in dispatchDidParseSource()
571 ScriptDebugListener::Script script; in dispatchDidParseSource()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorDebuggerAgent.cpp318 static String scriptSourceURL(const ScriptDebugListener::Script& script) in scriptSourceURL()
504 ScriptDebugListener::SkipPauseRequest InspectorDebuggerAgent::shouldSkipExceptionPause() in shouldSkipExceptionPause()
507 return ScriptDebugListener::NoSkip; in shouldSkipExceptionPause()
515 return ScriptDebugListener::NoSkip; in shouldSkipExceptionPause()
517 return ScriptDebugListener::Continue; in shouldSkipExceptionPause()
521 return ScriptDebugListener::NoSkip; in shouldSkipExceptionPause()
553 return ScriptDebugListener::Continue; in shouldSkipExceptionPause()
556 return ScriptDebugListener::NoSkip; in shouldSkipExceptionPause()
559 ScriptDebugListener::SkipPauseRequest InspectorDebuggerAgent::shouldSkipStepPause() in shouldSkipStepPause()
562 return ScriptDebugListener::NoSkip; in shouldSkipStepPause()
[all …]
DScriptDebugListener.h46 class ScriptDebugListener {
77 virtual ~ScriptDebugListener() { } in ~ScriptDebugListener()
DInspectorDebuggerAgent.h78 …rAgent : public InspectorBaseAgent<InspectorDebuggerAgent>, public ScriptDebugListener, public Ins…