diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-11-01 23:45:06 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-11-06 15:26:02 +0100 |
commit | 45f7199eee82c66637ec68287eafa40a651001c4 (patch) | |
tree | 8c0802f4ac7b89c2ce4d73063c8f65b9ee5face9 /components/script/microtask.rs | |
parent | 86f148fb97601413c0d983f21b760d973ade7a75 (diff) | |
download | servo-45f7199eee82c66637ec68287eafa40a651001c4.tar.gz servo-45f7199eee82c66637ec68287eafa40a651001c4.zip |
`cargo fix --edition`
Diffstat (limited to 'components/script/microtask.rs')
-rw-r--r-- | components/script/microtask.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/components/script/microtask.rs b/components/script/microtask.rs index 1a707d8fc3f..d249b17c0ed 100644 --- a/components/script/microtask.rs +++ b/components/script/microtask.rs @@ -6,17 +6,17 @@ //! microtask queues. It is up to implementations of event loops to store a queue and //! perform checkpoints at appropriate times, as well as enqueue microtasks as required. -use dom::bindings::callback::ExceptionHandling; -use dom::bindings::cell::DomRefCell; -use dom::bindings::codegen::Bindings::PromiseBinding::PromiseJobCallback; -use dom::bindings::root::DomRoot; -use dom::globalscope::GlobalScope; -use dom::htmlimageelement::ImageElementMicrotask; -use dom::htmlmediaelement::MediaElementMicrotask; -use dom::mutationobserver::MutationObserver; +use crate::dom::bindings::callback::ExceptionHandling; +use crate::dom::bindings::cell::DomRefCell; +use crate::dom::bindings::codegen::Bindings::PromiseBinding::PromiseJobCallback; +use crate::dom::bindings::root::DomRoot; +use crate::dom::globalscope::GlobalScope; +use crate::dom::htmlimageelement::ImageElementMicrotask; +use crate::dom::htmlmediaelement::MediaElementMicrotask; +use crate::dom::mutationobserver::MutationObserver; use msg::constellation_msg::PipelineId; -use script_runtime::notify_about_rejected_promises; -use script_thread::ScriptThread; +use crate::script_runtime::notify_about_rejected_promises; +use crate::script_thread::ScriptThread; use std::cell::Cell; use std::mem; use std::rc::Rc; |