summaryrefslogtreecommitdiff
path: root/ext/web/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/web/lib.rs')
-rw-r--r--ext/web/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/web/lib.rs b/ext/web/lib.rs
index af213b5be..374815804 100644
--- a/ext/web/lib.rs
+++ b/ext/web/lib.rs
@@ -29,6 +29,7 @@ use std::borrow::Cow;
use std::cell::RefCell;
use std::fmt;
use std::path::PathBuf;
+use std::sync::Arc;
use std::usize;
use crate::blob::op_blob_create_object_url;
@@ -110,7 +111,7 @@ deno_core::extension!(deno_web,
"15_performance.js",
],
options = {
- blob_store: BlobStore,
+ blob_store: Arc<BlobStore>,
maybe_location: Option<Url>,
},
state = |state, options| {