summaryrefslogtreecommitdiff
path: root/deps/v8/include/v8-inspector.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/include/v8-inspector.h')
-rw-r--r--deps/v8/include/v8-inspector.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/deps/v8/include/v8-inspector.h b/deps/v8/include/v8-inspector.h
index b96a6e29ac..cfa2aaba96 100644
--- a/deps/v8/include/v8-inspector.h
+++ b/deps/v8/include/v8-inspector.h
@@ -109,6 +109,8 @@ class V8_EXPORT V8StackTrace {
virtual ~V8StackTrace() = default;
virtual std::unique_ptr<protocol::Runtime::API::StackTrace>
buildInspectorObject() const = 0;
+ virtual std::unique_ptr<protocol::Runtime::API::StackTrace>
+ buildInspectorObject(int maxAsyncDepth) const = 0;
virtual std::unique_ptr<StringBuffer> toString() const = 0;
// Safe to pass between threads, drops async chain.
@@ -130,10 +132,6 @@ class V8_EXPORT V8InspectorSession {
// Dispatching protocol messages.
static bool canDispatchMethod(const StringView& method);
virtual void dispatchProtocolMessage(const StringView& message) = 0;
- virtual V8_DEPRECATED("Use state() instead",
- std::unique_ptr<StringBuffer> stateJSON()) {
- return nullptr;
- }
virtual std::vector<uint8_t> state() = 0;
virtual std::vector<std::unique_ptr<protocol::Schema::API::Domain>>
supportedDomains() = 0;