aboutsummaryrefslogtreecommitdiffstats
path: root/components/compositing/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/compositing/lib.rs')
-rw-r--r--components/compositing/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/components/compositing/lib.rs b/components/compositing/lib.rs
index 9b3fb8d9cda..e4307ff04cc 100644
--- a/components/compositing/lib.rs
+++ b/components/compositing/lib.rs
@@ -29,6 +29,7 @@ pub use compositor::IOCompositor;
use euclid::size::TypedSize2D;
use ipc_channel::ipc::IpcSender;
use msg::constellation_msg::PipelineId;
+use msg::constellation_msg::TopLevelBrowsingContextId;
use script_traits::{ConstellationControlMsg, LayoutControlMsg};
use style_traits::CSSPixel;
@@ -48,6 +49,7 @@ pub struct SendableFrameTree {
#[derive(Clone)]
pub struct CompositionPipeline {
pub id: PipelineId,
+ pub top_level_browsing_context_id: TopLevelBrowsingContextId,
pub script_chan: IpcSender<ConstellationControlMsg>,
pub layout_chan: IpcSender<LayoutControlMsg>,
}