diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-07-05 21:39:12 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-07-05 21:39:12 -0600 |
commit | cc73aad447f0455606a5a6005d31aa55334668a8 (patch) | |
tree | 88c95a498e0ad40fa7998d4595f9aa0e9ca8c77e /components/layout/data.rs | |
parent | db9e29a5f3c3600dcdd5c2b4e5a3e1e0baf917d7 (diff) | |
parent | 1a014beb08b143d57f8d8f138cb47ef60213be6a (diff) | |
download | servo-cc73aad447f0455606a5a6005d31aa55334668a8.tar.gz servo-cc73aad447f0455606a5a6005d31aa55334668a8.zip |
Auto merge of #6546 - michaelwu:slim-layoutdatawrapper, r=Ms2ger
Remove LayoutChan from LayoutDataWrapper
Saves 32 bytes in Node.
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6546)
<!-- Reviewable:end -->
Diffstat (limited to 'components/layout/data.rs')
-rw-r--r-- | components/layout/data.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/layout/data.rs b/components/layout/data.rs index e26e0a28431..75831d7c2ff 100644 --- a/components/layout/data.rs +++ b/components/layout/data.rs @@ -7,7 +7,6 @@ use incremental::RestyleDamage; use msg::constellation_msg::ConstellationChan; use parallel::DomParallelInfo; use script::dom::node::SharedLayoutData; -use script::layout_interface::LayoutChan; use std::sync::Arc; use style::properties::ComputedValues; @@ -61,7 +60,6 @@ bitflags! { } pub struct LayoutDataWrapper { - pub chan: Option<LayoutChan>, pub shared_data: SharedLayoutData, pub data: Box<PrivateLayoutData>, } |