Index: src/inspector/v8-debugger.h |
diff --git a/src/inspector/v8-debugger.h b/src/inspector/v8-debugger.h |
index ef4a8f19539e6a4c71ed24957370f872fef50c2f..4a39223e1d4dd458cc6d2a695abd61508ba81478 100644 |
--- a/src/inspector/v8-debugger.h |
+++ b/src/inspector/v8-debugger.h |
@@ -43,8 +43,8 @@ class V8Debugger { |
void setBreakpointsActivated(bool); |
bool breakpointsActivated() const { return m_breakpointsActivated; } |
- v8::DebugInterface::ExceptionBreakState getPauseOnExceptionsState(); |
- void setPauseOnExceptionsState(v8::DebugInterface::ExceptionBreakState); |
+ v8::debug::ExceptionBreakState getPauseOnExceptionsState(); |
+ void setPauseOnExceptionsState(v8::debug::ExceptionBreakState); |
void setPauseOnNextStatement(bool); |
bool canBreakProgram(); |
void breakProgram(); |
@@ -112,10 +112,10 @@ class V8Debugger { |
v8::Local<v8::Array> hitBreakpoints, |
bool isPromiseRejection = false, |
bool isUncaught = false); |
- static void v8DebugEventCallback(const v8::DebugInterface::EventDetails&); |
+ static void v8DebugEventCallback(const v8::debug::EventDetails&); |
v8::Local<v8::Value> callInternalGetterFunction(v8::Local<v8::Object>, |
const char* functionName); |
- void handleV8DebugEvent(const v8::DebugInterface::EventDetails&); |
+ void handleV8DebugEvent(const v8::debug::EventDetails&); |
void handleV8AsyncTaskEvent(v8::Local<v8::Context>, |
v8::Local<v8::Object> executionState, |
v8::Local<v8::Object> eventData); |
@@ -161,7 +161,7 @@ class V8Debugger { |
std::vector<std::unique_ptr<V8StackTraceImpl>> m_currentStacks; |
protocol::HashMap<V8DebuggerAgentImpl*, int> m_maxAsyncCallStackDepthMap; |
- v8::DebugInterface::ExceptionBreakState m_pauseOnExceptionsState; |
+ v8::debug::ExceptionBreakState m_pauseOnExceptionsState; |
WasmTranslation m_wasmTranslation; |