Index: src/inspector/v8-debugger.h |
diff --git a/src/inspector/v8-debugger.h b/src/inspector/v8-debugger.h |
index 0132b370fe3bab13a734be6aef46e07e3f47701c..74437234ad4960eb41307855107f04d6d8ec01cd 100644 |
--- a/src/inspector/v8-debugger.h |
+++ b/src/inspector/v8-debugger.h |
@@ -110,14 +110,19 @@ class V8Debugger { |
v8::Local<v8::Array> hitBreakpoints, |
bool isPromiseRejection = false, |
bool isUncaught = false); |
- static void v8DebugEventCallback(const v8::debug::EventDetails&); |
- v8::Local<v8::Value> callInternalGetterFunction(v8::Local<v8::Object>, |
- const char* functionName); |
- void handleV8DebugEvent(const v8::debug::EventDetails&); |
static void v8AsyncTaskListener(v8::debug::PromiseDebugActionType type, |
int id, void* data); |
static void v8CompileEventListener(v8::Local<v8::debug::Script> script, |
bool has_compile_error, void* data); |
+ static void v8BreakEventListener(v8::Local<v8::Context> pausedContext, |
+ v8::Local<v8::Object> execState, |
+ v8::Local<v8::Value> breakPointsHit, |
+ void* data); |
+ static void v8ExceptionEventListener(v8::Local<v8::Context> pausedContext, |
+ v8::Local<v8::Object> execState, |
+ v8::Local<v8::Value> exception, |
+ bool isPromiseRejection, bool isUncaught, |
+ void* data); |
v8::Local<v8::Value> collectionEntries(v8::Local<v8::Context>, |
v8::Local<v8::Object>); |