diff options
Diffstat (limited to 'components/script/serviceworkerjob.rs')
-rw-r--r-- | components/script/serviceworkerjob.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/serviceworkerjob.rs b/components/script/serviceworkerjob.rs index 76276d7b5ce..1a146f82c61 100644 --- a/components/script/serviceworkerjob.rs +++ b/components/script/serviceworkerjob.rs @@ -7,7 +7,7 @@ //! the script thread. The script thread contains a JobQueue, which stores all scheduled Jobs //! by multiple service worker clients in a Vec. -use dom::bindings::cell::DOMRefCell; +use dom::bindings::cell::DomRefCell; use dom::bindings::error::Error; use dom::bindings::refcounted::{Trusted, TrustedPromise}; use dom::bindings::reflector::DomObject; @@ -93,11 +93,11 @@ impl PartialEq for Job { #[must_root] #[derive(JSTraceable)] -pub struct JobQueue(pub DOMRefCell<HashMap<ServoUrl, Vec<Job>>>); +pub struct JobQueue(pub DomRefCell<HashMap<ServoUrl, Vec<Job>>>); impl JobQueue { pub fn new() -> JobQueue { - JobQueue(DOMRefCell::new(HashMap::new())) + JobQueue(DomRefCell::new(HashMap::new())) } #[allow(unrooted_must_root)] // https://w3c.github.io/ServiceWorker/#schedule-job-algorithm |