diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2020-03-27 12:58:48 -0700 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2020-03-31 13:42:03 -0700 |
commit | 1ba606b919360266054f7af3c2ac7e1b5750a3e5 (patch) | |
tree | 2a91793bbe3f6715b75800e94ca7b8fcc99bd8a9 /components/compositing/windowing.rs | |
parent | 3aa15e3fa30194e465c8bbb21c07d5239a6ac9f8 (diff) | |
download | servo-1ba606b919360266054f7af3c2ac7e1b5750a3e5.tar.gz servo-1ba606b919360266054f7af3c2ac7e1b5750a3e5.zip |
Pass context menu callbacks down to the openxr device
Diffstat (limited to 'components/compositing/windowing.rs')
-rw-r--r-- | components/compositing/windowing.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/compositing/windowing.rs b/components/compositing/windowing.rs index a27473ca0f1..1e7a7b30b8d 100644 --- a/components/compositing/windowing.rs +++ b/components/compositing/windowing.rs @@ -5,7 +5,7 @@ //! Abstract windowing methods. The concrete implementations of these can be found in `platform/`. use canvas::{SurfaceProviders, WebGlExecutor}; -use embedder_traits::EventLoopWaker; +use embedder_traits::{EmbedderProxy, EventLoopWaker}; use euclid::Scale; #[cfg(feature = "gl")] use gleam::gl; @@ -190,6 +190,7 @@ pub trait EmbedderMethods { _: &mut webxr::MainThreadRegistry, _: WebGlExecutor, _: SurfaceProviders, + _: EmbedderProxy, ) { } } |