diff options
Diffstat (limited to 'components/script/dom/gpucommandencoder.rs')
-rw-r--r-- | components/script/dom/gpucommandencoder.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script/dom/gpucommandencoder.rs b/components/script/dom/gpucommandencoder.rs index 348e77828f1..46d0872643e 100644 --- a/components/script/dom/gpucommandencoder.rs +++ b/components/script/dom/gpucommandencoder.rs @@ -4,7 +4,7 @@ use crate::dom::bindings::cell::DomRefCell; use crate::dom::bindings::codegen::Bindings::GPUCommandEncoderBinding::{ - self, GPUCommandBufferDescriptor, GPUCommandEncoderMethods, GPUComputePassDescriptor, + GPUCommandBufferDescriptor, GPUCommandEncoderMethods, GPUComputePassDescriptor, }; use crate::dom::bindings::reflector::DomObject; use crate::dom::bindings::reflector::{reflect_dom_object, Reflector}; @@ -48,7 +48,6 @@ impl GPUCommandEncoder { reflect_dom_object( Box::new(GPUCommandEncoder::new_inherited(channel, encoder)), global, - GPUCommandEncoderBinding::Wrap, ) } } |