aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/xrframe.rs
diff options
context:
space:
mode:
authorbors-servo <servo-ops@mozilla.com>2020-04-08 23:02:50 -0400
committerGitHub <noreply@github.com>2020-04-08 23:02:50 -0400
commit37023b24f256f7defd605e90e0873afee9197a1e (patch)
tree86bb88347003ebe0a47d5c5e3a8f6c8fdddbc503 /components/script/dom/xrframe.rs
parente691e42d58f6b0f29aa5c09abdc6b669f53408b0 (diff)
parentc611e46381c9b813aa134ac34b631145ef0c8672 (diff)
downloadservo-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/xrframe.rs')
-rw-r--r--components/script/dom/xrframe.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/xrframe.rs b/components/script/dom/xrframe.rs
index 6de10312ec3..27a9085bded 100644
--- a/components/script/dom/xrframe.rs
+++ b/components/script/dom/xrframe.rs
@@ -21,7 +21,7 @@ use webxr_api::Frame;
pub struct XRFrame {
reflector_: Reflector,
session: Dom<XRSession>,
- #[ignore_malloc_size_of = "defined in rust-webvr"]
+ #[ignore_malloc_size_of = "defined in webxr_api"]
data: Frame,
active: Cell<bool>,
animation_frame: Cell<bool>,