aboutsummaryrefslogtreecommitdiffstats
path: root/components/webvr/lib.rs
diff options
context:
space:
mode:
authorAlan Jeffrey <ajeffrey@mozilla.com>2020-04-07 16:05:36 -0500
committerAlan Jeffrey <ajeffrey@mozilla.com>2020-04-08 20:23:41 -0500
commitc611e46381c9b813aa134ac34b631145ef0c8672 (patch)
tree7b01b33a340a2b9be21ca208d40b508dff9610f0 /components/webvr/lib.rs
parentd8781c1054ec268f19f3e716f2b5d6b56aab52cf (diff)
downloadservo-c611e46381c9b813aa134ac34b631145ef0c8672.tar.gz
servo-c611e46381c9b813aa134ac34b631145ef0c8672.zip
Remove WebVR
Diffstat (limited to 'components/webvr/lib.rs')
-rw-r--r--components/webvr/lib.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/components/webvr/lib.rs b/components/webvr/lib.rs
deleted file mode 100644
index e281f4937eb..00000000000
--- a/components/webvr/lib.rs
+++ /dev/null
@@ -1,15 +0,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/. */
-
-#![deny(unsafe_code)]
-
-#[macro_use]
-extern crate log;
-
-mod webvr_thread;
-pub use crate::webvr_thread::{WebVRCompositorHandler, WebVRThread};
-pub use rust_webvr::api::VRExternalShmemPtr;
-pub use rust_webvr::VRMainThreadHeartbeat;
-pub use rust_webvr::VRServiceManager;
-pub use rust_webvr_api::VRService;