From d1253ae95b099d8ede3aacbdc5e5834ebd5d8865 Mon Sep 17 00:00:00 2001 From: Peter Marshall Date: Thu, 19 Mar 2020 16:14:35 +0100 Subject: [PATCH] [unwinder] Advance deprecation of the old unwinder API Chrome uses the new version now. Bug: v8:8116 Change-Id: I59af8d2c6a897a852acd6de3a7938a4b8d3943e4 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2110015 Reviewed-by: Yang Guo Commit-Queue: Peter Marshall Cr-Commit-Position: refs/heads/master@{#66796} --- include/v8.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/v8.h b/include/v8.h index 4fc6fa01b7..77ac509862 100644 --- a/include/v8.h +++ b/include/v8.h @@ -9285,7 +9285,7 @@ class V8_EXPORT Isolate { * Returns the UnwindState necessary for use with the Unwinder API. */ // TODO(petermarshall): Remove this API. - V8_DEPRECATE_SOON("Use entry_stubs + code_pages version.") + V8_DEPRECATED("Use entry_stubs + code_pages version.") UnwindState GetUnwindState(); /** @@ -10642,7 +10642,7 @@ class V8_EXPORT Unwinder { * \return True on success. */ // TODO(petermarshall): Remove this API - V8_DEPRECATE_SOON("Use entry_stubs + code_pages version.") + V8_DEPRECATED("Use entry_stubs + code_pages version.") static bool TryUnwindV8Frames(const UnwindState& unwind_state, RegisterState* register_state, const void* stack_base); @@ -10670,7 +10670,7 @@ class V8_EXPORT Unwinder { * (but not necessarily) be successful. */ // TODO(petermarshall): Remove this API - V8_DEPRECATE_SOON("Use code_pages version.") + V8_DEPRECATED("Use code_pages version.") static bool PCIsInV8(const UnwindState& unwind_state, void* pc); /**