diff options
Diffstat (limited to 'components/script/dom/webglquery.rs')
-rw-r--r-- | components/script/dom/webglquery.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/dom/webglquery.rs b/components/script/dom/webglquery.rs index c3cd4e9e08c..d7418471936 100644 --- a/components/script/dom/webglquery.rs +++ b/components/script/dom/webglquery.rs @@ -3,7 +3,6 @@ * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ use crate::dom::bindings::codegen::Bindings::WebGL2RenderingContextBinding::WebGL2RenderingContextConstants as constants; -use crate::dom::bindings::codegen::Bindings::WebGLQueryBinding; use crate::dom::bindings::inheritance::Castable; use crate::dom::bindings::refcounted::Trusted; use crate::dom::bindings::reflector::{reflect_dom_object, DomObject}; @@ -46,7 +45,6 @@ impl WebGLQuery { reflect_dom_object( Box::new(Self::new_inherited(context, id)), &*context.global(), - WebGLQueryBinding::Wrap, ) } |