mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
* chore: bump node in DEPS to v24.14.0 * lib: prefer call() over apply() if argument list is not array https://github.com/nodejs/node/pull/60796 * build,deps: replace cjs-module-lexer with merve https://github.com/nodejs/node/pull/61456 * test: use fixture directories for sea tests https://github.com/nodejs/node/pull/61167 * src: throw RangeError on failed ArrayBuffer BackingStore allocation * chore: fixup patch indices --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
21 lines
944 B
Diff
21 lines
944 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: John Kleinschmidt <jkleinsc@electronjs.org>
|
|
Date: Wed, 5 Nov 2025 12:50:16 -0500
|
|
Subject: Delete deprecated fields on v8::Isolate
|
|
|
|
https://chromium-review.googlesource.com/c/v8/v8/+/7081397
|
|
|
|
diff --git a/src/api/environment.cc b/src/api/environment.cc
|
|
index 2111ee63a6ace438c1a143c90a807ed9fc2bcc9d..ce6426a1bf2dadb1a642874a05718724ef0f3d7c 100644
|
|
--- a/src/api/environment.cc
|
|
+++ b/src/api/environment.cc
|
|
@@ -218,8 +218,6 @@ void SetIsolateCreateParamsForNode(Isolate::CreateParams* params) {
|
|
// heap based on the actual physical memory.
|
|
params->constraints.ConfigureDefaults(total_memory, 0);
|
|
}
|
|
- params->embedder_wrapper_object_index = BaseObject::InternalFields::kSlot;
|
|
- params->embedder_wrapper_type_index = std::numeric_limits<int>::max();
|
|
|
|
#ifdef NODE_ENABLE_VTUNE_PROFILING
|
|
params->code_event_handler = vTune::GetVtuneCodeEventHandler();
|