aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/window.rs
diff options
context:
space:
mode:
authorZhen Zhang <izgzhen@gmail.com>2016-06-11 00:26:26 +0800
committerZhen Zhang <izgzhen@gmail.com>2016-06-17 20:06:37 +0800
commit4d3379392d3d79c78fa68b0831d3f94d9da949c5 (patch)
treeda7fc5cdb9bd9a1343517367f7c76b8b78950e68 /components/script/dom/window.rs
parent5a0c98afb2998e7990e1c813f2bc15fe3c191638 (diff)
downloadservo-4d3379392d3d79c78fa68b0831d3f94d9da949c5.tar.gz
servo-4d3379392d3d79c78fa68b0831d3f94d9da949c5.zip
Implement Blob URL's DOM interfaces
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r--components/script/dom/window.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs
index 486ad45bde4..03fbe2b2a2b 100644
--- a/components/script/dom/window.rs
+++ b/components/script/dom/window.rs
@@ -3,7 +3,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use app_units::Au;
-use blob_url_store::BlobURLStore;
use devtools_traits::{ScriptToDevtoolsControlMsg, TimelineMarker, TimelineMarkerType, WorkerId};
use dom::bindings::callback::ExceptionHandling;
use dom::bindings::cell::DOMRefCell;
@@ -167,9 +166,6 @@ pub struct Window {
scheduler_chan: IpcSender<TimerEventRequest>,
timers: OneshotTimers,
- /// Blob URL store
- blob_url_store: DOMRefCell<BlobURLStore>,
-
next_worker_id: Cell<WorkerId>,
/// For sending messages to the memory profiler.
@@ -1641,7 +1637,6 @@ impl Window {
console: Default::default(),
crypto: Default::default(),
navigator: Default::default(),
- blob_url_store: DOMRefCell::new(BlobURLStore::new()),
image_cache_thread: image_cache_thread,
mem_profiler_chan: mem_profiler_chan,
time_profiler_chan: time_profiler_chan,