mirror of
https://github.com/electron/electron.git
synced 2026-01-08 23:18:06 -05:00
* chore: bump chromium in DEPS to 144.0.7507.0
* chore: bump chromium in DEPS to 144.0.7508.0
* chore: update patches
* 7101838: [pathbuilder] Enforce immutable SkPath APIs globally
https://chromium-review.googlesource.com/c/chromium/src/+/7101838
* chore: update filenames.libcxx.gni
* [pathbuilder] Enforce immutable SkPath APIs globally
https://chromium-review.googlesource.com/c/chromium/src/+/7101838
* Reduce service_worker_info.h includes in headers
https://chromium-review.googlesource.com/c/chromium/src/+/7108401
* chore: bump chromium in DEPS to 144.0.7510.0
* chore: update patches
* Use internal popup menus for tabs in actor-controlled states
https://chromium-review.googlesource.com/c/chromium/src/+/7074751
* [api] Delete deprecated fields on v8::Isolate
https://chromium-review.googlesource.com/c/v8/v8/+/7081397
xref: 98d243aea0
* Fixup Reduce service_worker_info.h includes in headers
* Promote deprecation of v8::Context and v8::Object API methods
https://chromium-review.googlesource.com/c/v8/v8/+/7087956
* fixup Promote deprecation of v8::Context and v8::Object API methods
* chore: bump chromium in DEPS to 144.0.7512.1
* chore: update patches
* fixup [pathbuilder] Enforce immutable SkPath APIs global
* chore: update filenames.hunspell.gni
* fix deprecation of v8::Context and v8::Object API methods for nan
https://chromium-review.googlesource.com/c/v8/v8/+/7087956
* [PDF] Implement PdfHelpBubbleHandlerFactory
https://chromium-review.googlesource.com/c/chromium/src/+/7056325
also: [PDF Ink Signatures] Hook up IPH
https://chromium-review.googlesource.com/c/chromium/src/+/7056207
* Remove base/hash/md5.h
https://chromium-review.googlesource.com/c/chromium/src/+/7113738
* fixup for lint
* Remove deprecated interceptor callback types and AccessControl enum
https://chromium-review.googlesource.com/c/v8/v8/+/7112747
* fixup for lint
* fixup [PDF] Implement PdfHelpBubbleHandlerFactory
* use base::SHA1HashString instead of std::hash
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
78 lines
2.6 KiB
C++
78 lines
2.6 KiB
C++
// Copyright (c) 2019 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/common/gin_helper/destroyable.h"
|
|
|
|
#include "base/no_destructor.h"
|
|
#include "gin/converter.h"
|
|
#include "shell/common/gin_helper/wrappable_base.h"
|
|
#include "v8/include/v8-function.h"
|
|
|
|
namespace gin_helper {
|
|
|
|
namespace {
|
|
|
|
v8::Global<v8::FunctionTemplate>* GetDestroyFunc() {
|
|
static base::NoDestructor<v8::Global<v8::FunctionTemplate>> destroy_func;
|
|
return destroy_func.get();
|
|
}
|
|
|
|
v8::Global<v8::FunctionTemplate>* GetIsDestroyedFunc() {
|
|
static base::NoDestructor<v8::Global<v8::FunctionTemplate>> is_destroyed_func;
|
|
return is_destroyed_func.get();
|
|
}
|
|
|
|
void DestroyFunc(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
|
v8::Local<v8::Object> holder = info.This();
|
|
if (Destroyable::IsDestroyed(holder))
|
|
return;
|
|
|
|
// TODO(zcbenz): gin_helper::Wrappable will be removed.
|
|
delete static_cast<gin_helper::WrappableBase*>(
|
|
holder->GetAlignedPointerFromInternalField(
|
|
0, v8::kEmbedderDataTypeTagDefault));
|
|
holder->SetAlignedPointerInInternalField(0, nullptr,
|
|
v8::kEmbedderDataTypeTagDefault);
|
|
}
|
|
|
|
void IsDestroyedFunc(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
|
info.GetReturnValue().Set(gin::ConvertToV8(
|
|
info.GetIsolate(), Destroyable::IsDestroyed(info.This())));
|
|
}
|
|
|
|
} // namespace
|
|
|
|
// static
|
|
bool Destroyable::IsDestroyed(v8::Local<v8::Object> object) {
|
|
// An object is considered destroyed if it has no internal pointer or its
|
|
// internal has been destroyed.
|
|
return object->InternalFieldCount() == 0 ||
|
|
object->GetAlignedPointerFromInternalField(
|
|
0, v8::kEmbedderDataTypeTagDefault) == nullptr;
|
|
}
|
|
|
|
// static
|
|
void Destroyable::MakeDestroyable(v8::Isolate* isolate,
|
|
v8::Local<v8::FunctionTemplate> prototype) {
|
|
// Cache the FunctionTemplate of "destroy" and "isDestroyed".
|
|
if (GetDestroyFunc()->IsEmpty()) {
|
|
auto templ = v8::FunctionTemplate::New(isolate, DestroyFunc);
|
|
templ->RemovePrototype();
|
|
GetDestroyFunc()->Reset(isolate, templ);
|
|
templ = v8::FunctionTemplate::New(isolate, IsDestroyedFunc);
|
|
templ->RemovePrototype();
|
|
GetIsDestroyedFunc()->Reset(isolate, templ);
|
|
}
|
|
|
|
auto proto_templ = prototype->PrototypeTemplate();
|
|
proto_templ->Set(
|
|
gin::StringToSymbol(isolate, "destroy"),
|
|
v8::Local<v8::FunctionTemplate>::New(isolate, *GetDestroyFunc()));
|
|
proto_templ->Set(
|
|
gin::StringToSymbol(isolate, "isDestroyed"),
|
|
v8::Local<v8::FunctionTemplate>::New(isolate, *GetIsDestroyedFunc()));
|
|
}
|
|
|
|
} // namespace gin_helper
|