Searched defs:pauseState (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDebuggerAgent.cpp199 long pauseState = m_state->getLong(DebuggerAgentState::pauseOnExceptionsState); local
201 setPauseOnExceptionsImpl(&error, pauseState);
821 ScriptDebugServer::PauseOnExceptionsState pauseState; local
823 pauseState = ScriptDebugServer::DontPauseOnExceptions;
825 pauseState = ScriptDebugServer::PauseOnAllExceptions;
827 pauseState = ScriptDebugServer::PauseOnUncaughtExceptions;
832 setPauseOnExceptionsImpl(errorString, pauseState);
835 void InspectorDebuggerAgent::setPauseOnExceptionsImpl(ErrorString* errorString, int pauseState) argument
837 scriptDebugServer().setPauseOnExceptionsState(static_cast<ScriptDebugServer::PauseOnExceptionsState>(pauseState));
838 if (scriptDebugServer().pauseOnExceptionsState() != pauseState)
[all...]

Completed in 99 milliseconds