Skip to content

Commit a480160

Browse files
committed
Version 5.0.71.25 (cherry-pick)
Merged 2a1570e Temporarily undeprecate ForceSet BUG=chromium:595601 LOG=N [email protected] Review URL: https://codereview.chromium.org/1824793003 . Cr-Commit-Position: refs/branch-heads/5.0@{#32} Cr-Branched-From: ad16e6c-refs/heads/5.0.71@{#1} Cr-Branched-From: bd9df50-refs/heads/master@{#34215}
1 parent f72e279 commit a480160

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

include/v8-version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define V8_MAJOR_VERSION 5
1212
#define V8_MINOR_VERSION 0
1313
#define V8_BUILD_NUMBER 71
14-
#define V8_PATCH_LEVEL 24
14+
#define V8_PATCH_LEVEL 25
1515

1616
// Use 1 for candidates and 0 otherwise.
1717
// (Boolean macro values are not supported by all preprocessors.)

include/v8.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -2679,10 +2679,10 @@ class V8_EXPORT Object : public Value {
26792679
V8_DEPRECATED("Use CreateDataProperty / DefineOwnProperty",
26802680
bool ForceSet(Local<Value> key, Local<Value> value,
26812681
PropertyAttribute attribs = None));
2682-
V8_DEPRECATED("Use CreateDataProperty / DefineOwnProperty",
2683-
Maybe<bool> ForceSet(Local<Context> context, Local<Value> key,
2684-
Local<Value> value,
2685-
PropertyAttribute attribs = None));
2682+
V8_DEPRECATE_SOON("Use CreateDataProperty / DefineOwnProperty",
2683+
Maybe<bool> ForceSet(Local<Context> context,
2684+
Local<Value> key, Local<Value> value,
2685+
PropertyAttribute attribs = None));
26862686

26872687
V8_DEPRECATE_SOON("Use maybe version", Local<Value> Get(Local<Value> key));
26882688
V8_WARN_UNUSED_RESULT MaybeLocal<Value> Get(Local<Context> context,

0 commit comments

Comments
 (0)