diff options
Diffstat (limited to 'components/script/dom/dynamicmoduleowner.rs')
-rw-r--r-- | components/script/dom/dynamicmoduleowner.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/components/script/dom/dynamicmoduleowner.rs b/components/script/dom/dynamicmoduleowner.rs index 67f83442d8f..28bd0636d3a 100644 --- a/components/script/dom/dynamicmoduleowner.rs +++ b/components/script/dom/dynamicmoduleowner.rs @@ -2,14 +2,16 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ +use std::rc::Rc; + +use dom_struct::dom_struct; +use uuid::Uuid; + use crate::dom::bindings::codegen::Bindings::DynamicModuleOwnerBinding::DynamicModuleOwnerMethods; use crate::dom::bindings::reflector::{reflect_dom_object, Reflector}; use crate::dom::bindings::root::DomRoot; use crate::dom::globalscope::GlobalScope; use crate::dom::promise::Promise; -use dom_struct::dom_struct; -use std::rc::Rc; -use uuid::Uuid; /// An unique id for dynamic module #[derive(Clone, Copy, Debug, Eq, Hash, JSTraceable, PartialEq)] |