aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webgpu/gpubindgroup.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2025-02-04 01:58:08 -0500
committerGitHub <noreply@github.com>2025-02-04 06:58:08 +0000
commitc94ac5bccb67c409130bda9b7e13064dd291ac98 (patch)
tree4b0730f6ec4060b026a252db060fc2a3f8031243 /components/script/dom/webgpu/gpubindgroup.rs
parent0d51578cc37b8ab392a930bc0a0f38ada2bb7913 (diff)
downloadservo-c94ac5bccb67c409130bda9b7e13064dd291ac98.tar.gz
servo-c94ac5bccb67c409130bda9b7e13064dd291ac98.zip
Move various reflector types and traits to script_bindings (#35279)
* script: Move Reflector to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Extract global() helper from DomObject into new trait. Move DomObject and related traits to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> --------- Signed-off-by: Josh Matthews <josh@joshmatthews.net>
Diffstat (limited to 'components/script/dom/webgpu/gpubindgroup.rs')
-rw-r--r--components/script/dom/webgpu/gpubindgroup.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webgpu/gpubindgroup.rs b/components/script/dom/webgpu/gpubindgroup.rs
index 2ece4cdbdde..dca77bc72a1 100644
--- a/components/script/dom/webgpu/gpubindgroup.rs
+++ b/components/script/dom/webgpu/gpubindgroup.rs
@@ -13,7 +13,7 @@ use crate::dom::bindings::cell::DomRefCell;
use crate::dom::bindings::codegen::Bindings::WebGPUBinding::{
GPUBindGroupDescriptor, GPUBindGroupMethods,
};
-use crate::dom::bindings::reflector::{reflect_dom_object, DomObject, Reflector};
+use crate::dom::bindings::reflector::{reflect_dom_object, DomGlobal, Reflector};
use crate::dom::bindings::root::{Dom, DomRoot};
use crate::dom::bindings::str::USVString;
use crate::dom::globalscope::GlobalScope;