diff options
Diffstat (limited to 'components/msg/compositor_msg.rs')
-rw-r--r-- | components/msg/compositor_msg.rs | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/components/msg/compositor_msg.rs b/components/msg/compositor_msg.rs index 8c411148c9a..e7612351724 100644 --- a/components/msg/compositor_msg.rs +++ b/components/msg/compositor_msg.rs @@ -2,7 +2,6 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -use app_units::Au; use azure::azure_hl::Color; use constellation_msg::{Key, KeyModifiers, KeyState, PipelineId}; use euclid::{Matrix4, Point2D, Rect, Size2D}; @@ -120,7 +119,7 @@ pub struct LayerProperties { pub perspective: Matrix4, /// The subpage that this layer represents. If this is `Some`, this layer represents an /// iframe. - pub subpage_layer_info: Option<SubpageLayerInfo>, + pub subpage_pipeline_id: Option<PipelineId>, /// Whether this layer establishes a new 3d rendering context. pub establishes_3d_context: bool, /// Whether this layer scrolls its overflow area. @@ -163,13 +162,3 @@ pub enum ScriptToCompositorMsg { ResizeTo(Size2D<u32>), Exit, } - -/// Subpage (i.e. iframe)-specific information about each layer. -#[derive(Clone, Copy, Debug, Deserialize, Serialize, HeapSizeOf)] -pub struct SubpageLayerInfo { - /// The ID of the pipeline. - pub pipeline_id: PipelineId, - /// The offset of the subpage within this layer (to account for borders). - pub origin: Point2D<Au>, -} - |