aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webxr/xrhittestresult.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/webxr/xrhittestresult.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/webxr/xrhittestresult.rs')
-rw-r--r--components/script/dom/webxr/xrhittestresult.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webxr/xrhittestresult.rs b/components/script/dom/webxr/xrhittestresult.rs
index de9693136c7..850f1aed267 100644
--- a/components/script/dom/webxr/xrhittestresult.rs
+++ b/components/script/dom/webxr/xrhittestresult.rs
@@ -6,7 +6,7 @@ use dom_struct::dom_struct;
use webxr_api::HitTestResult;
use crate::dom::bindings::codegen::Bindings::XRHitTestResultBinding::XRHitTestResultMethods;
-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::globalscope::GlobalScope;
use crate::dom::xrframe::XRFrame;