diff options
Diffstat (limited to 'WebCore/bindings/js/ScriptDebugServer.h')
-rw-r--r-- | WebCore/bindings/js/ScriptDebugServer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/WebCore/bindings/js/ScriptDebugServer.h b/WebCore/bindings/js/ScriptDebugServer.h index 6a8209b..fd8976b 100644 --- a/WebCore/bindings/js/ScriptDebugServer.h +++ b/WebCore/bindings/js/ScriptDebugServer.h @@ -67,6 +67,8 @@ public: void removeBreakpoint(const String& sourceID, unsigned lineNumber); void clearBreakpoints(); void setBreakpointsActivated(bool activated); + void activateBreakpoints() { setBreakpointsActivated(true); } + void deactivateBreakpoints() { setBreakpointsActivated(false); } enum PauseOnExceptionsState { DontPauseOnExceptions, @@ -76,7 +78,7 @@ public: PauseOnExceptionsState pauseOnExceptionsState() const { return m_pauseOnExceptionsState; } void setPauseOnExceptionsState(PauseOnExceptionsState); - void pauseProgram(); + void pause(); void continueProgram(); void stepIntoStatement(); void stepOverStatement(); |