| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2010, Google Inc. All rights reserved. | 2 * Copyright (c) 2010, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 bool breakpointsActivated() const { return m_breakpointsActivated; } | 64 bool breakpointsActivated() const { return m_breakpointsActivated; } |
| 65 | 65 |
| 66 enum PauseOnExceptionsState { | 66 enum PauseOnExceptionsState { |
| 67 DontPauseOnExceptions, | 67 DontPauseOnExceptions, |
| 68 PauseOnAllExceptions, | 68 PauseOnAllExceptions, |
| 69 PauseOnUncaughtExceptions | 69 PauseOnUncaughtExceptions |
| 70 }; | 70 }; |
| 71 PauseOnExceptionsState getPauseOnExceptionsState(); | 71 PauseOnExceptionsState getPauseOnExceptionsState(); |
| 72 void setPauseOnExceptionsState(PauseOnExceptionsState); | 72 void setPauseOnExceptionsState(PauseOnExceptionsState); |
| 73 void setPauseOnNextStatement(bool); | 73 void setPauseOnNextStatement(bool); |
| 74 bool pausingOnNextStatement(); | |
| 75 bool canBreakProgram(); | 74 bool canBreakProgram(); |
| 76 void breakProgram(); | 75 void breakProgram(); |
| 77 void continueProgram(); | 76 void continueProgram(); |
| 78 void stepIntoStatement(); | 77 void stepIntoStatement(); |
| 79 void stepOverStatement(); | 78 void stepOverStatement(); |
| 80 void stepOutOfFunction(); | 79 void stepOutOfFunction(); |
| 81 void clearStepping(); | 80 void clearStepping(); |
| 82 | 81 |
| 83 bool setScriptSource(const String16& sourceID, const String16& newContent, b
ool preview, ErrorString*, Maybe<protocol::Debugger::SetScriptSourceError>*, Jav
aScriptCallFrames* newCallFrames, Maybe<bool>* stackChanged); | 82 bool setScriptSource(const String16& sourceID, const String16& newContent, b
ool preview, ErrorString*, Maybe<protocol::Debugger::SetScriptSourceError>*, Jav
aScriptCallFrames* newCallFrames, Maybe<bool>* stackChanged); |
| 84 JavaScriptCallFrames currentCallFrames(int limit = 0); | 83 JavaScriptCallFrames currentCallFrames(int limit = 0); |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 v8::Local<v8::Object> m_executionState; | 156 v8::Local<v8::Object> m_executionState; |
| 158 v8::Local<v8::Context> m_pausedContext; | 157 v8::Local<v8::Context> m_pausedContext; |
| 159 bool m_runningNestedMessageLoop; | 158 bool m_runningNestedMessageLoop; |
| 160 v8::Global<v8::Context> m_regexContext; | 159 v8::Global<v8::Context> m_regexContext; |
| 161 }; | 160 }; |
| 162 | 161 |
| 163 } // namespace blink | 162 } // namespace blink |
| 164 | 163 |
| 165 | 164 |
| 166 #endif // V8DebuggerImpl_h | 165 #endif // V8DebuggerImpl_h |
| OLD | NEW |