mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Add blank FakeXRDeviceController interface
This commit is contained in:
parent
1c07b0f416
commit
9a31f6fe7a
3 changed files with 84 additions and 0 deletions
34
components/script/dom/fakexrdevicecontroller.rs
Normal file
34
components/script/dom/fakexrdevicecontroller.rs
Normal file
|
@ -0,0 +1,34 @@
|
|||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* 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/. */
|
||||
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* 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 crate::dom::bindings::codegen::Bindings::FakeXRDeviceControllerBinding;
|
||||
use crate::dom::bindings::reflector::{reflect_dom_object, Reflector};
|
||||
use crate::dom::bindings::root::DomRoot;
|
||||
use crate::dom::globalscope::GlobalScope;
|
||||
use dom_struct::dom_struct;
|
||||
|
||||
#[dom_struct]
|
||||
pub struct FakeXRDeviceController {
|
||||
reflector: Reflector,
|
||||
}
|
||||
|
||||
impl FakeXRDeviceController {
|
||||
pub fn new_inherited() -> FakeXRDeviceController {
|
||||
FakeXRDeviceController {
|
||||
reflector: Reflector::new(),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn new(global: &GlobalScope) -> DomRoot<FakeXRDeviceController> {
|
||||
reflect_dom_object(
|
||||
Box::new(FakeXRDeviceController::new_inherited()),
|
||||
global,
|
||||
FakeXRDeviceControllerBinding::Wrap,
|
||||
)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue