diff options
Diffstat (limited to 'components/script/dom/vrframedata.rs')
-rw-r--r-- | components/script/dom/vrframedata.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/components/script/dom/vrframedata.rs b/components/script/dom/vrframedata.rs index dc251165e51..054e5b973ab 100644 --- a/components/script/dom/vrframedata.rs +++ b/components/script/dom/vrframedata.rs @@ -2,15 +2,15 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -use dom::bindings::codegen::Bindings::VRFrameDataBinding; -use dom::bindings::codegen::Bindings::VRFrameDataBinding::VRFrameDataMethods; -use dom::bindings::error::Fallible; -use dom::bindings::num::Finite; -use dom::bindings::reflector::{DomObject, Reflector, reflect_dom_object}; -use dom::bindings::root::{Dom, DomRoot}; -use dom::globalscope::GlobalScope; -use dom::vrpose::VRPose; -use dom::window::Window; +use crate::dom::bindings::codegen::Bindings::VRFrameDataBinding; +use crate::dom::bindings::codegen::Bindings::VRFrameDataBinding::VRFrameDataMethods; +use crate::dom::bindings::error::Fallible; +use crate::dom::bindings::num::Finite; +use crate::dom::bindings::reflector::{DomObject, Reflector, reflect_dom_object}; +use crate::dom::bindings::root::{Dom, DomRoot}; +use crate::dom::globalscope::GlobalScope; +use crate::dom::vrpose::VRPose; +use crate::dom::window::Window; use dom_struct::dom_struct; use js::jsapi::{Heap, JSContext, JSObject}; use js::typedarray::{Float32Array, CreateWith}; |