Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2018-10-11 01:19:16 +0300
committerMichaƫl Zasso <targos@protonmail.com>2018-11-01 23:47:11 +0300
commit9011db426ed2d2c605789ba72136dc915d2ef31e (patch)
tree581aff88c5c967539ac94e642fe1783af0f160c9 /deps
parent787e13b41cc5aaf3f1f35a8e145596027f09d629 (diff)
deps: move more deprecations to V8_DEPRECATED
These APIs have been deprecated upstream in V8. PR-URL: https://github.com/nodejs/node/pull/23414 Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'deps')
-rw-r--r--deps/v8/include/v8.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/deps/v8/include/v8.h b/deps/v8/include/v8.h
index 6c3cc84fba7..c48025871aa 100644
--- a/deps/v8/include/v8.h
+++ b/deps/v8/include/v8.h
@@ -1963,9 +1963,9 @@ class V8_EXPORT JSON {
* \param json_string The string to parse.
* \return The corresponding value if successfully parsed.
*/
- static V8_DEPRECATE_SOON("Use the maybe version taking context",
- MaybeLocal<Value> Parse(Isolate* isolate,
- Local<String> json_string));
+ static V8_DEPRECATED("Use the maybe version taking context",
+ MaybeLocal<Value> Parse(Isolate* isolate,
+ Local<String> json_string));
static V8_WARN_UNUSED_RESULT MaybeLocal<Value> Parse(
Local<Context> context, Local<String> json_string);
@@ -2065,7 +2065,7 @@ class V8_EXPORT ValueSerializer {
* Returns the stored data. This serializer should not be used once the buffer
* is released. The contents are undefined if a previous write has failed.
*/
- V8_DEPRECATE_SOON("Use Release()", std::vector<uint8_t> ReleaseBuffer());
+ V8_DEPRECATED("Use Release()", std::vector<uint8_t> ReleaseBuffer());
/**
* Returns the stored data (allocated using the delegate's
@@ -2086,10 +2086,10 @@ class V8_EXPORT ValueSerializer {
/**
* Similar to TransferArrayBuffer, but for SharedArrayBuffer.
*/
- V8_DEPRECATE_SOON("Use Delegate::GetSharedArrayBufferId",
- void TransferSharedArrayBuffer(
- uint32_t transfer_id,
- Local<SharedArrayBuffer> shared_array_buffer));
+ V8_DEPRECATED("Use Delegate::GetSharedArrayBufferId",
+ void TransferSharedArrayBuffer(
+ uint32_t transfer_id,
+ Local<SharedArrayBuffer> shared_array_buffer));
/**
* Indicate whether to treat ArrayBufferView objects as host objects,
@@ -3439,7 +3439,7 @@ class V8_EXPORT Object : public Value {
V8_WARN_UNUSED_RESULT Maybe<bool> Has(Local<Context> context,
Local<Value> key);
- V8_DEPRECATE_SOON("Use maybe version", bool Delete(Local<Value> key));
+ V8_DEPRECATED("Use maybe version", bool Delete(Local<Value> key));
V8_WARN_UNUSED_RESULT Maybe<bool> Delete(Local<Context> context,
Local<Value> key);
@@ -5148,8 +5148,8 @@ class V8_EXPORT SharedArrayBuffer : public Object {
*/
class V8_EXPORT Date : public Object {
public:
- static V8_DEPRECATE_SOON("Use maybe version.",
- Local<Value> New(Isolate* isolate, double time));
+ static V8_DEPRECATED("Use maybe version.",
+ Local<Value> New(Isolate* isolate, double time));
static V8_WARN_UNUSED_RESULT MaybeLocal<Value> New(Local<Context> context,
double time);
@@ -6408,14 +6408,14 @@ class V8_EXPORT ResourceConstraints {
uint64_t virtual_memory_limit);
// Returns the max semi-space size in MB.
- V8_DEPRECATE_SOON("Use max_semi_space_size_in_kb()",
- size_t max_semi_space_size()) {
+ V8_DEPRECATED("Use max_semi_space_size_in_kb()",
+ size_t max_semi_space_size()) {
return max_semi_space_size_in_kb_ / 1024;
}
// Sets the max semi-space size in MB.
- V8_DEPRECATE_SOON("Use set_max_semi_space_size_in_kb(size_t limit_in_kb)",
- void set_max_semi_space_size(size_t limit_in_mb)) {
+ V8_DEPRECATED("Use set_max_semi_space_size_in_kb(size_t limit_in_kb)",
+ void set_max_semi_space_size(size_t limit_in_mb)) {
max_semi_space_size_in_kb_ = limit_in_mb * 1024;
}
@@ -6433,12 +6433,12 @@ class V8_EXPORT ResourceConstraints {
void set_max_old_space_size(size_t limit_in_mb) {
max_old_space_size_ = limit_in_mb;
}
- V8_DEPRECATE_SOON("max_executable_size_ is subsumed by max_old_space_size_",
- size_t max_executable_size() const) {
+ V8_DEPRECATED("max_executable_size_ is subsumed by max_old_space_size_",
+ size_t max_executable_size() const) {
return max_executable_size_;
}
- V8_DEPRECATE_SOON("max_executable_size_ is subsumed by max_old_space_size_",
- void set_max_executable_size(size_t limit_in_mb)) {
+ V8_DEPRECATED("max_executable_size_ is subsumed by max_old_space_size_",
+ void set_max_executable_size(size_t limit_in_mb)) {
max_executable_size_ = limit_in_mb;
}
uint32_t* stack_limit() const { return stack_limit_; }
@@ -7067,9 +7067,9 @@ class V8_EXPORT EmbedderHeapTracer {
* Note: Only one of the AdvanceTracing methods needs to be overriden by the
* embedder.
*/
- V8_DEPRECATE_SOON("Use void AdvanceTracing(deadline_in_ms)",
- virtual bool AdvanceTracing(
- double deadline_in_ms, AdvanceTracingActions actions)) {
+ V8_DEPRECATED("Use void AdvanceTracing(deadline_in_ms)",
+ virtual bool AdvanceTracing(
+ double deadline_in_ms, AdvanceTracingActions actions)) {
return false;
}
@@ -7108,8 +7108,8 @@ class V8_EXPORT EmbedderHeapTracer {
* Note: Only one of the EnterFinalPause methods needs to be overriden by the
* embedder.
*/
- V8_DEPRECATE_SOON("Use void EnterFinalPause(EmbedderStackState)",
- virtual void EnterFinalPause()) {}
+ V8_DEPRECATED("Use void EnterFinalPause(EmbedderStackState)",
+ virtual void EnterFinalPause()) {}
virtual void EnterFinalPause(EmbedderStackState stack_state);
/**