Index: src/inspector/v8-debugger-agent-impl.h |
diff --git a/src/inspector/v8-debugger-agent-impl.h b/src/inspector/v8-debugger-agent-impl.h |
index c9433e20f6ecce27a804767a92a4fc8be894742c..01c7909bb8f49a7e7ca5eab6eba660723ca14d7c 100644 |
--- a/src/inspector/v8-debugger-agent-impl.h |
+++ b/src/inspector/v8-debugger-agent-impl.h |
@@ -122,15 +122,14 @@ class V8DebuggerAgentImpl : public protocol::Debugger::Backend { |
void cancelPauseOnNextStatement(); |
void breakProgram(const String16& breakReason, |
std::unique_ptr<protocol::DictionaryValue> data); |
- void breakProgramOnException(const String16& breakReason, |
- std::unique_ptr<protocol::DictionaryValue> data); |
void reset(); |
// Interface for V8InspectorImpl |
void didPause(int contextId, v8::Local<v8::Value> exception, |
const std::vector<String16>& hitBreakpoints, |
- bool isPromiseRejection, bool isUncaught, bool isOOMBreak); |
+ bool isPromiseRejection, bool isUncaught, bool isOOMBreak, |
+ bool isAssert); |
void didContinue(); |
void didParseSource(std::unique_ptr<V8DebuggerScript>, bool success); |