summaryrefslogtreecommitdiff
path: root/runtime/web_worker.rs
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2021-05-22 18:08:24 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2021-05-23 15:16:42 +0200
commit8cf7f966f24d0fb996b41d92b04ad9647337a8f6 (patch)
tree306f60a892186dc14e06f65f7dd5c7b7dbfad147 /runtime/web_worker.rs
parent5f0d91497b03795250c55340c7e7c7de66d4607b (diff)
feat(extensions): add BroadcastChannel
Co-Authored-By: Ben Noordhuis <info@bnoordhuis.nl> Fixes: #10354
Diffstat (limited to 'runtime/web_worker.rs')
-rw-r--r--runtime/web_worker.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/web_worker.rs b/runtime/web_worker.rs
index 5b731a0f5..172d24dea 100644
--- a/runtime/web_worker.rs
+++ b/runtime/web_worker.rs
@@ -268,6 +268,7 @@ impl WebWorker {
options.user_agent.clone(),
options.ca_data.clone(),
),
+ deno_broadcast_channel::init(),
deno_crypto::init(options.seed),
deno_webgpu::init(options.unstable),
deno_timers::init::<Permissions>(),