diff options
author | Joe Kachmar <joseph.kachmar@gmail.com> | 2015-12-13 13:31:20 -0500 |
---|---|---|
committer | Joe Kachmar <joseph.kachmar@gmail.com> | 2015-12-26 12:24:51 -0500 |
commit | 655268d1117c81b05721f65ca5ee7a0ed2670986 (patch) | |
tree | 0f47932193d04177440e79fb96b41eeb5569aa04 /components/script/layout_interface.rs | |
parent | d2e7fd82213a6b2df6703dc6f9ace70e49762c5a (diff) | |
download | servo-655268d1117c81b05721f65ca5ee7a0ed2670986.tar.gz servo-655268d1117c81b05721f65ca5ee7a0ed2670986.zip |
Separate script and layout messages, issue #8843
Diffstat (limited to 'components/script/layout_interface.rs')
-rw-r--r-- | components/script/layout_interface.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/layout_interface.rs b/components/script/layout_interface.rs index a533fd6418d..4570192f6fb 100644 --- a/components/script/layout_interface.rs +++ b/components/script/layout_interface.rs @@ -18,8 +18,8 @@ use msg::constellation_msg::{ConstellationChan, Failure, PipelineId}; use msg::constellation_msg::{WindowSizeData}; use net_traits::image_cache_task::ImageCacheTask; use profile_traits::mem::ReportsChan; -use script_traits::{ConstellationControlMsg, LayoutControlMsg, OpaqueScriptLayoutChannel}; -use script_traits::{ScriptMsg as ConstellationMsg, UntrustedNodeAddress}; +use script_traits::{ConstellationControlMsg, LayoutControlMsg, LayoutMsg as ConstellationMsg}; +use script_traits::{OpaqueScriptLayoutChannel, UntrustedNodeAddress}; use selectors::parser::PseudoElement; use std::any::Any; use std::sync::Arc; |