diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-06-16 12:28:43 +0100 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-06-20 19:08:12 +0200 |
commit | 9e2e0ff98c7c42b6bfb24f0846dc0c82e36e7d2c (patch) | |
tree | aa32e333a8bc0c11895213251a226d5b818a4541 /components/servo/lib.rs | |
parent | 2c50318ee7c05ab926e27d225a3409c8da86c991 (diff) | |
download | servo-9e2e0ff98c7c42b6bfb24f0846dc0c82e36e7d2c.tar.gz servo-9e2e0ff98c7c42b6bfb24f0846dc0c82e36e7d2c.zip |
Move the remainder of layout_interface into script_layout_interface.
Diffstat (limited to 'components/servo/lib.rs')
-rw-r--r-- | components/servo/lib.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/components/servo/lib.rs b/components/servo/lib.rs index 363cd3bec4f..5f98a1894b6 100644 --- a/components/servo/lib.rs +++ b/components/servo/lib.rs @@ -39,6 +39,7 @@ pub extern crate profile; pub extern crate profile_traits; pub extern crate script; pub extern crate script_traits; +pub extern crate script_layout_interface; pub extern crate style; pub extern crate url; pub extern crate util; @@ -229,7 +230,7 @@ fn create_constellation(opts: opts::Opts, webrender_api_sender: webrender_api_sender, }; let constellation_chan = - Constellation::<script::layout_interface::Msg, + Constellation::<script_layout_interface::message::Msg, layout::layout_thread::LayoutThread, script::script_thread::ScriptThread>::start(initial_state); @@ -263,7 +264,7 @@ pub fn run_content_process(token: String) { script::init(); - unprivileged_content.start_all::<script::layout_interface::Msg, + unprivileged_content.start_all::<script_layout_interface::message::Msg, layout::layout_thread::LayoutThread, script::script_thread::ScriptThread>(true); } |