refactor(bluetooth): uses embedderproxy directly

This commit is contained in:
OJ Kwon 2018-04-17 19:46:02 -07:00
parent 5574b42126
commit 61b4a891bb
No known key found for this signature in database
GPG key ID: FFCFEF3460FD1901
7 changed files with 46 additions and 67 deletions

View file

@ -213,10 +213,3 @@ pub enum SWManagerMsg {
/// Provide the constellation with a means of communicating with the Service Worker Manager
OwnSender(IpcSender<ServiceWorkerMsg>),
}
/// Messages outgoing from the Bluetooth Manager thread to constellation
#[derive(Deserialize, Serialize)]
pub enum BluetoothManagerMsg {
/// Requesting to open device select dialog
OpenDeviceSelectDialog(Vec<String>, IpcSender<Option<String>>)
}