diff options
Diffstat (limited to 'components/shared/compositing/lib.rs')
-rw-r--r-- | components/shared/compositing/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/components/shared/compositing/lib.rs b/components/shared/compositing/lib.rs index bb1d4645701..0caaf6c3187 100644 --- a/components/shared/compositing/lib.rs +++ b/components/shared/compositing/lib.rs @@ -2,14 +2,11 @@ * 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/. */ -//! Communication with the compositor thread. - -mod constellation_msg; +//! The interface to the `compositing` crate. use std::fmt::{Debug, Error, Formatter}; use base::id::{PipelineId, WebViewId}; -pub use constellation_msg::{ConstellationMsg, PaintMetricEvent}; use crossbeam_channel::{Receiver, Sender}; use embedder_traits::{EventLoopWaker, MouseButton, MouseButtonAction}; use euclid::Rect; |