Index: src/inspector/v8-debugger.h |
diff --git a/src/inspector/v8-debugger.h b/src/inspector/v8-debugger.h |
index e4e47a9c69b66282a41cd24ab9229fe7c5a0ce39..4c4f94cf54ee0691db32ddf5d36678ca7d5b32dd 100644 |
--- a/src/inspector/v8-debugger.h |
+++ b/src/inspector/v8-debugger.h |
@@ -52,6 +52,7 @@ class V8Debugger : public v8::debug::DebugDelegate { |
bool canBreakProgram(); |
void breakProgram(int targetContextGroupId); |
void continueProgram(int targetContextGroupId); |
+ void breakProgramOnAssert(int targetContextGroupId); |
void setPauseOnNextStatement(bool, int targetContextGroupId); |
void stepIntoStatement(int targetContextGroupId); |
@@ -188,6 +189,7 @@ class V8Debugger : public v8::debug::DebugDelegate { |
v8::Local<v8::Context> m_pausedContext; |
int m_ignoreScriptParsedEventsCounter; |
bool m_scheduledOOMBreak = false; |
+ bool m_scheduledAssertBreak = false; |
int m_targetContextGroupId = 0; |
int m_pausedContextGroupId = 0; |
String16 m_continueToLocationBreakpointId; |