2023-08-31 00:38:07 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Samuel Attard <marshallofsound@electronjs.org>
|
|
|
|
Date: Wed, 8 Mar 2023 13:04:21 -0800
|
|
|
|
Subject: refactor: expose HostImportModuleDynamically and
|
|
|
|
HostGetImportMetaProperties to embedders
|
|
|
|
|
|
|
|
This is so that Electron can blend Blink's and Node's implementations of these isolate handlers.
|
|
|
|
|
|
|
|
diff --git a/third_party/blink/renderer/bindings/core/v8/v8_initializer.cc b/third_party/blink/renderer/bindings/core/v8/v8_initializer.cc
|
2024-01-03 08:52:49 +00:00
|
|
|
index 99df9217e06a302f1280162293241d5d8b67b9b2..9597f5bb6cdbc26d07752ba196307c4abe65c9cb 100644
|
2023-08-31 00:38:07 +00:00
|
|
|
--- a/third_party/blink/renderer/bindings/core/v8/v8_initializer.cc
|
|
|
|
+++ b/third_party/blink/renderer/bindings/core/v8/v8_initializer.cc
|
2024-01-03 08:52:49 +00:00
|
|
|
@@ -624,7 +624,9 @@ bool JavaScriptCompileHintsMagicEnabledCallback(
|
2023-08-31 00:38:07 +00:00
|
|
|
execution_context);
|
|
|
|
}
|
|
|
|
|
|
|
|
-v8::MaybeLocal<v8::Promise> HostImportModuleDynamically(
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+v8::MaybeLocal<v8::Promise> V8Initializer::HostImportModuleDynamically(
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
v8::Local<v8::Data> v8_host_defined_options,
|
|
|
|
v8::Local<v8::Value> v8_referrer_resource_url,
|
2024-01-03 08:52:49 +00:00
|
|
|
@@ -702,7 +704,7 @@ v8::MaybeLocal<v8::Promise> HostImportModuleDynamically(
|
2023-08-31 00:38:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/C/#hostgetimportmetaproperties
|
|
|
|
-void HostGetImportMetaProperties(v8::Local<v8::Context> context,
|
|
|
|
+void V8Initializer::HostGetImportMetaProperties(v8::Local<v8::Context> context,
|
|
|
|
v8::Local<v8::Module> module,
|
|
|
|
v8::Local<v8::Object> meta) {
|
|
|
|
ScriptState* script_state = ScriptState::From(context);
|
2024-01-03 08:52:49 +00:00
|
|
|
@@ -745,9 +747,6 @@ std::ostream& operator<<(std::ostream& os, const PrintV8OOM& oom_details) {
|
2023-11-28 21:40:12 +00:00
|
|
|
return os;
|
2023-08-31 00:38:07 +00:00
|
|
|
}
|
|
|
|
|
2023-11-28 21:40:12 +00:00
|
|
|
-} // namespace
|
|
|
|
-
|
|
|
|
-// static
|
|
|
|
void V8Initializer::InitializeV8Common(v8::Isolate* isolate) {
|
2023-08-31 00:38:07 +00:00
|
|
|
// Set up garbage collection before setting up anything else as V8 may trigger
|
|
|
|
// GCs during Blink setup.
|
2024-01-03 08:52:49 +00:00
|
|
|
@@ -769,9 +768,9 @@ void V8Initializer::InitializeV8Common(v8::Isolate* isolate) {
|
2023-08-31 00:38:07 +00:00
|
|
|
SharedArrayBufferConstructorEnabledCallback);
|
|
|
|
isolate->SetJavaScriptCompileHintsMagicEnabledCallback(
|
|
|
|
JavaScriptCompileHintsMagicEnabledCallback);
|
|
|
|
- isolate->SetHostImportModuleDynamicallyCallback(HostImportModuleDynamically);
|
|
|
|
+ isolate->SetHostImportModuleDynamicallyCallback(V8Initializer::HostImportModuleDynamically);
|
|
|
|
isolate->SetHostInitializeImportMetaObjectCallback(
|
|
|
|
- HostGetImportMetaProperties);
|
|
|
|
+ V8Initializer::HostGetImportMetaProperties);
|
|
|
|
isolate->SetMetricsRecorder(std::make_shared<V8MetricsRecorder>(isolate));
|
|
|
|
|
2023-09-18 20:44:09 +00:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2023-08-31 00:38:07 +00:00
|
|
|
diff --git a/third_party/blink/renderer/bindings/core/v8/v8_initializer.h b/third_party/blink/renderer/bindings/core/v8/v8_initializer.h
|
2023-11-28 21:40:12 +00:00
|
|
|
index 2e0fd8cdef733677f8e1d32b3d8e0c635e0a5052..1df4517f9b5926c1dc5333aa6fc9cc1290256c70 100644
|
2023-08-31 00:38:07 +00:00
|
|
|
--- a/third_party/blink/renderer/bindings/core/v8/v8_initializer.h
|
|
|
|
+++ b/third_party/blink/renderer/bindings/core/v8/v8_initializer.h
|
2023-11-28 21:40:12 +00:00
|
|
|
@@ -84,6 +84,17 @@ class CORE_EXPORT V8Initializer {
|
|
|
|
v8::Local<v8::Value> data);
|
|
|
|
static void PromiseRejectHandlerInMainThread(v8::PromiseRejectMessage data);
|
2023-08-31 00:38:07 +00:00
|
|
|
|
|
|
|
+ static v8::MaybeLocal<v8::Promise> HostImportModuleDynamically(
|
|
|
|
+ v8::Local<v8::Context> context,
|
|
|
|
+ v8::Local<v8::Data> v8_host_defined_options,
|
|
|
|
+ v8::Local<v8::Value> v8_referrer_resource_url,
|
|
|
|
+ v8::Local<v8::String> v8_specifier,
|
|
|
|
+ v8::Local<v8::FixedArray> v8_import_assertions);
|
|
|
|
+
|
|
|
|
+ static void HostGetImportMetaProperties(v8::Local<v8::Context> context,
|
|
|
|
+ v8::Local<v8::Module> module,
|
|
|
|
+ v8::Local<v8::Object> meta);
|
|
|
|
+
|
|
|
|
static void WasmAsyncResolvePromiseCallback(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Context> context,
|