diff options
Diffstat (limited to 'components/script/dom/gpusupportedfeatures.rs')
-rw-r--r-- | components/script/dom/gpusupportedfeatures.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/components/script/dom/gpusupportedfeatures.rs b/components/script/dom/gpusupportedfeatures.rs index bf6e5e8011a..9cdde31c45e 100644 --- a/components/script/dom/gpusupportedfeatures.rs +++ b/components/script/dom/gpusupportedfeatures.rs @@ -13,9 +13,10 @@ use webgpu::wgt; use super::bindings::like::Setlike; use crate::dom::bindings::cell::DomRefCell; -use crate::dom::bindings::codegen::Bindings::GPUAdapterBinding::GPUFeatureName; -use crate::dom::bindings::codegen::Bindings::GPUAdapterBinding::GPUFeatureNameValues::pairs; -use crate::dom::bindings::codegen::Bindings::GPUSupportedFeaturesBinding::GPUSupportedFeaturesMethods; +use crate::dom::bindings::codegen::Bindings::WebGPUBinding::GPUFeatureNameValues::pairs; +use crate::dom::bindings::codegen::Bindings::WebGPUBinding::{ + GPUFeatureName, GPUSupportedFeaturesMethods, +}; use crate::dom::bindings::error::Fallible; use crate::dom::bindings::reflector::{reflect_dom_object_with_proto, Reflector}; use crate::dom::bindings::root::DomRoot; |