Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2021-08-07 05:26:37 +0300
committerJames M Snell <jasnell@gmail.com>2021-08-12 17:23:15 +0300
commit31d1d0c4c19fea5007eb8c55a4cb1178f295c8ca (patch)
tree952dace5c1d443f62208be2e1bcd5abe7dfa783e /src/node_snapshotable.h
parent793c08b8d1b9b1f639e74bf7289acb8fb01b1765 (diff)
url,buffer: implement URL.createObjectURL
Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/39693 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Bradley Farias <bradley.meck@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Diffstat (limited to 'src/node_snapshotable.h')
-rw-r--r--src/node_snapshotable.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/node_snapshotable.h b/src/node_snapshotable.h
index 38da68f6d28..ceb84fc9bf0 100644
--- a/src/node_snapshotable.h
+++ b/src/node_snapshotable.h
@@ -15,7 +15,8 @@ struct SnapshotData;
#define SERIALIZABLE_OBJECT_TYPES(V) \
V(fs_binding_data, fs::BindingData) \
- V(v8_binding_data, v8_utils::BindingData)
+ V(v8_binding_data, v8_utils::BindingData) \
+ V(blob_binding_data, BlobBindingData)
enum class EmbedderObjectType : uint8_t {
k_default = 0,