Skip to content

Commit 6ec8839

Browse files
isheludkoV8 LUCI CQ
authored and
V8 LUCI CQ
committed
[api][cleanup] Deprecate SetAccessor and SetNativeDataProperty
... which were marked as V8_DEPRECATE_SOON in 12.1 and 12.4. This CL deprecates v8::Template::SetNativeDataProperty(v8::Local<v8::String>, ...); v8::ObjectTemplate::SetAccessor(v8::Local<v8::String>, ...); and v8::Template::SetNativeDataProperty(...); with AccessControl parameter. Additionally, the CL marks the following typedefs as V8_DEPRECATE_SOON v8::AccessorGetterCallback, v8::AccessorSetterCallback. Bug: chromium:326505377 Change-Id: If6f30b3aba9f55785c573faf4a307c6de0d175ab Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5383482 Reviewed-by: Toon Verwaest <[email protected]> Commit-Queue: Igor Sheludko <[email protected]> Cr-Commit-Position: refs/heads/main@{#92974}
1 parent a82a803 commit 6ec8839

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

include/v8-object.h

+9-7
Original file line numberDiff line numberDiff line change
@@ -146,18 +146,20 @@ enum PropertyAttribute {
146146
};
147147

148148
/**
149-
* Accessor[Getter|Setter] are used as callback functions when
150-
* setting|getting a particular property. See Object and ObjectTemplate's
151-
* method SetAccessor.
149+
* Accessor[Getter|Setter] are used as callback functions when setting|getting
150+
* a particular data property. See Object::SetNativeDataProperty and
151+
* ObjectTemplate::SetNativeDataProperty methods.
152152
*/
153-
using AccessorGetterCallback =
153+
using AccessorGetterCallback V8_DEPRECATE_SOON(
154+
"Use AccessorNameGetterCallback signature instead") =
154155
void (*)(Local<String> property, const PropertyCallbackInfo<Value>& info);
155156
using AccessorNameGetterCallback =
156157
void (*)(Local<Name> property, const PropertyCallbackInfo<Value>& info);
157158

158-
using AccessorSetterCallback = void (*)(Local<String> property,
159-
Local<Value> value,
160-
const PropertyCallbackInfo<void>& info);
159+
using AccessorSetterCallback V8_DEPRECATE_SOON(
160+
"Use AccessorNameSetterCallback signature instead") =
161+
void (*)(Local<String> property, Local<Value> value,
162+
const PropertyCallbackInfo<void>& info);
161163
using AccessorNameSetterCallback =
162164
void (*)(Local<Name> property, Local<Value> value,
163165
const PropertyCallbackInfo<void>& info);

include/v8-template.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -80,21 +80,21 @@ class V8_EXPORT Template : public Data {
8080
* \param attribute The attributes of the property for which an accessor
8181
* is added.
8282
*/
83-
V8_DEPRECATE_SOON("Use SetNativeDataProperty without AccessControl instead")
83+
V8_DEPRECATED("Use SetNativeDataProperty without AccessControl instead")
8484
void SetNativeDataProperty(
8585
Local<String> name, AccessorGetterCallback getter,
8686
AccessorSetterCallback setter, Local<Value> data,
8787
PropertyAttribute attribute, AccessControl settings,
8888
SideEffectType getter_side_effect_type = SideEffectType::kHasSideEffect,
8989
SideEffectType setter_side_effect_type = SideEffectType::kHasSideEffect);
90-
V8_DEPRECATE_SOON("Use SetNativeDataProperty without AccessControl instead")
90+
V8_DEPRECATED("Use SetNativeDataProperty without AccessControl instead")
9191
void SetNativeDataProperty(
9292
Local<Name> name, AccessorNameGetterCallback getter,
9393
AccessorNameSetterCallback setter, Local<Value> data,
9494
PropertyAttribute attribute, AccessControl settings,
9595
SideEffectType getter_side_effect_type = SideEffectType::kHasSideEffect,
9696
SideEffectType setter_side_effect_type = SideEffectType::kHasSideEffect);
97-
V8_DEPRECATE_SOON("Use SetNativeDataProperty with Local<Name> instead")
97+
V8_DEPRECATED("Use SetNativeDataProperty with Local<Name> instead")
9898
void SetNativeDataProperty(
9999
Local<String> name, AccessorGetterCallback getter,
100100
AccessorSetterCallback setter = nullptr,
@@ -1063,7 +1063,7 @@ class V8_EXPORT ObjectTemplate : public Template {
10631063
* \param attribute The attributes of the property for which an accessor
10641064
* is added.
10651065
*/
1066-
V8_DEPRECATE_SOON("Use SetAccessor with Local<Name> instead")
1066+
V8_DEPRECATED("Use SetAccessor with Local<Name> instead")
10671067
void SetAccessor(
10681068
Local<String> name, AccessorGetterCallback getter,
10691069
AccessorSetterCallback setter = nullptr,

0 commit comments

Comments
 (0)