diff options
Diffstat (limited to 'components/script/dom/gpushadermodule.rs')
-rw-r--r-- | components/script/dom/gpushadermodule.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/script/dom/gpushadermodule.rs b/components/script/dom/gpushadermodule.rs index 05621688d16..28a0a885506 100644 --- a/components/script/dom/gpushadermodule.rs +++ b/components/script/dom/gpushadermodule.rs @@ -4,17 +4,17 @@ use std::rc::Rc; +use dom_struct::dom_struct; +use webgpu::WebGPUShaderModule; + +use super::bindings::error::Fallible; +use super::promise::Promise; use crate::dom::bindings::cell::DomRefCell; use crate::dom::bindings::codegen::Bindings::GPUShaderModuleBinding::GPUShaderModuleMethods; use crate::dom::bindings::reflector::{reflect_dom_object, Reflector}; use crate::dom::bindings::root::DomRoot; use crate::dom::bindings::str::USVString; use crate::dom::globalscope::GlobalScope; -use dom_struct::dom_struct; -use webgpu::WebGPUShaderModule; - -use super::bindings::error::Fallible; -use super::promise::Promise; #[dom_struct] pub struct GPUShaderModule { |