diff options
Diffstat (limited to 'components/script/dom/globalscope.rs')
-rw-r--r-- | components/script/dom/globalscope.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/globalscope.rs b/components/script/dom/globalscope.rs index f0748433e64..f6937427eda 100644 --- a/components/script/dom/globalscope.rs +++ b/components/script/dom/globalscope.rs @@ -892,7 +892,7 @@ impl GlobalScope { } /// Start tracking a blob - pub fn track_blob(&self, dom_blob: &DomRoot<Blob>, blob_impl: BlobImpl) { + pub fn track_blob(&self, dom_blob: &Blob, blob_impl: BlobImpl) { let blob_id = blob_impl.blob_id(); let blob_info = BlobInfo { @@ -905,7 +905,7 @@ impl GlobalScope { } /// Start tracking a file - pub fn track_file(&self, file: &DomRoot<File>, blob_impl: BlobImpl) { + pub fn track_file(&self, file: &File, blob_impl: BlobImpl) { let blob_id = blob_impl.blob_id(); let blob_info = BlobInfo { |