diff options
Diffstat (limited to 'components/script/dom/xrhittestresult.rs')
-rw-r--r-- | components/script/dom/xrhittestresult.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/components/script/dom/xrhittestresult.rs b/components/script/dom/xrhittestresult.rs index dd35043e187..e7e6c9713b4 100644 --- a/components/script/dom/xrhittestresult.rs +++ b/components/script/dom/xrhittestresult.rs @@ -2,6 +2,9 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ +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::root::{Dom, DomRoot}; @@ -9,8 +12,6 @@ use crate::dom::globalscope::GlobalScope; use crate::dom::xrframe::XRFrame; use crate::dom::xrpose::XRPose; use crate::dom::xrspace::XRSpace; -use dom_struct::dom_struct; -use webxr_api::HitTestResult; #[dom_struct] pub struct XRHitTestResult { |