[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 <yangguo@chromium.org>
Commit-Queue: Peter Marshall <petermarshall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#66796}
This commit is contained in:
Peter Marshall 2020-03-19 16:14:35 +01:00 committed by Commit Bot
parent 4ac48b600e
commit d1253ae95b

View File

@ -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);
/**