diff options
author | bors-servo <servo-ops@mozilla.com> | 2020-04-08 23:02:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-08 23:02:50 -0400 |
commit | 37023b24f256f7defd605e90e0873afee9197a1e (patch) | |
tree | 86bb88347003ebe0a47d5c5e3a8f6c8fdddbc503 /components/script/dom/bindings/trace.rs | |
parent | e691e42d58f6b0f29aa5c09abdc6b669f53408b0 (diff) | |
parent | c611e46381c9b813aa134ac34b631145ef0c8672 (diff) | |
download | servo-37023b24f256f7defd605e90e0873afee9197a1e.tar.gz servo-37023b24f256f7defd605e90e0873afee9197a1e.zip |
Auto merge of #26136 - asajeffrey:goodbye-webvr, r=Manishearth
Remove WebVR
<!-- Please describe your changes on the following line: -->
Removes support for WebVR. WebXR is our future!
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes do not require tests because how do you test
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'components/script/dom/bindings/trace.rs')
-rw-r--r-- | components/script/dom/bindings/trace.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/dom/bindings/trace.rs b/components/script/dom/bindings/trace.rs index 305c6327b82..cefc930af0a 100644 --- a/components/script/dom/bindings/trace.rs +++ b/components/script/dom/bindings/trace.rs @@ -157,7 +157,6 @@ use webgpu::{ WebGPUPipelineLayout, WebGPUQueue, WebGPUShaderModule, }; use webrender_api::{DocumentId, ImageKey}; -use webvr_traits::{WebVRGamepadData, WebVRGamepadHand, WebVRGamepadState}; use webxr_api::SwapChainId as WebXRSwapChainId; unsafe_no_jsmanaged_fields!(Tm); @@ -548,7 +547,6 @@ unsafe_no_jsmanaged_fields!(RefCell<Option<RawPass>>); unsafe_no_jsmanaged_fields!(GPUBufferState); unsafe_no_jsmanaged_fields!(WebXRSwapChainId); unsafe_no_jsmanaged_fields!(MediaList); -unsafe_no_jsmanaged_fields!(WebVRGamepadData, WebVRGamepadState, WebVRGamepadHand); unsafe_no_jsmanaged_fields!( webxr_api::Registry, webxr_api::Session, |