diff options
author | Ms2ger <Ms2ger@gmail.com> | 2015-10-28 11:54:44 +0100 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2015-10-31 12:40:14 +0100 |
commit | 40b3b749bf6bd41f6e43bcf7a4588dbbbc479c74 (patch) | |
tree | 4b29b4394b5e36762c16e641fcf614fef42282be /components/script/layout_interface.rs | |
parent | 521a87180a85709f8f704df33537f79bd131bf71 (diff) | |
download | servo-40b3b749bf6bd41f6e43bcf7a4588dbbbc479c74.tar.gz servo-40b3b749bf6bd41f6e43bcf7a4588dbbbc479c74.zip |
Remove unused fields from ScriptReflow.
Diffstat (limited to 'components/script/layout_interface.rs')
-rw-r--r-- | components/script/layout_interface.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/components/script/layout_interface.rs b/components/script/layout_interface.rs index 5c41a04363c..6dab946f6fb 100644 --- a/components/script/layout_interface.rs +++ b/components/script/layout_interface.rs @@ -175,14 +175,10 @@ pub struct ScriptReflow { pub reflow_info: Reflow, /// The document node. pub document: TrustedNodeAddress, - /// The channel through which messages can be sent back to the script task. - pub script_chan: Sender<ConstellationControlMsg>, /// The current window size. pub window_size: WindowSizeData, /// The channel that we send a notification to. pub script_join_chan: Sender<()>, - /// Unique identifier - pub id: u32, /// The type of query if any to perform during this reflow. pub query_type: ReflowQueryType, } |