chore: use v8::Local<>, not v8::Handle<> (#43019)
v8::Handle is an alias for v8::Local that "is kept around for historical reasons" and is disabled when V8_IMMINENT_DEPRECATION_WARNING is defined
This commit is contained in:
parent
5669a40d5c
commit
df524c6eca
15 changed files with 34 additions and 34 deletions
|
@ -50,7 +50,7 @@ namespace gin {
|
|||
template <>
|
||||
struct Converter<electron::TaskbarHost::ThumbarButton> {
|
||||
static bool FromV8(v8::Isolate* isolate,
|
||||
v8::Handle<v8::Value> val,
|
||||
v8::Local<v8::Value> val,
|
||||
electron::TaskbarHost::ThumbarButton* out) {
|
||||
gin::Dictionary dict(isolate);
|
||||
if (!gin::ConvertFromV8(isolate, val, &dict))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue