diff options
author | OJ Kwon <kwon.ohjoong@gmail.com> | 2018-04-04 13:49:43 -0700 |
---|---|---|
committer | OJ Kwon <kwon.ohjoong@gmail.com> | 2018-04-18 11:39:31 -0700 |
commit | c141090d61d4bcc21dfce55dc03824b569848766 (patch) | |
tree | 1139990fd219c8b09f0b44e8cbcb10c7cceae167 /components/servo/lib.rs | |
parent | 3695fc4efc5a463175b301c71f3a3a7fe3b5c5a9 (diff) | |
download | servo-c141090d61d4bcc21dfce55dc03824b569848766.tar.gz servo-c141090d61d4bcc21dfce55dc03824b569848766.zip |
feat(constellation): expose msg for bluetooth thread
Diffstat (limited to 'components/servo/lib.rs')
-rw-r--r-- | components/servo/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/servo/lib.rs b/components/servo/lib.rs index 1d8e64ab8e4..9b17735b8ba 100644 --- a/components/servo/lib.rs +++ b/components/servo/lib.rs @@ -526,7 +526,9 @@ fn create_constellation(user_agent: Cow<'static, str>, webgl_threads, webvr_chan, }; - let (constellation_chan, from_swmanager_sender) = + let (constellation_chan, + from_swmanager_sender, + from_bluetoothmanager_sender) = Constellation::<script_layout_interface::message::Msg, layout_thread::LayoutThread, script::script_thread::ScriptThread>::start(initial_state); |