mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Do not glob-export DevtoolsControlMsg variants.
This commit is contained in:
parent
66f4faf44f
commit
1452614e28
5 changed files with 15 additions and 14 deletions
|
@ -7,7 +7,7 @@ use pipeline::{Pipeline, CompositionPipeline};
|
|||
use compositor_task::CompositorProxy;
|
||||
use compositor_task::Msg as CompositorMsg;
|
||||
use devtools_traits;
|
||||
use devtools_traits::DevtoolsControlChan;
|
||||
use devtools_traits::{DevtoolsControlChan, DevtoolsControlMsg};
|
||||
use geom::rect::{Rect, TypedRect};
|
||||
use geom::scale_factor::ScaleFactor;
|
||||
use gfx::font_cache_task::FontCacheTask;
|
||||
|
@ -521,7 +521,7 @@ impl<LTF: LayoutTaskFactory, STF: ScriptTaskFactory> Constellation<LTF, STF> {
|
|||
self.image_cache_task.exit();
|
||||
self.resource_task.send(resource_task::ControlMsg::Exit).unwrap();
|
||||
self.devtools_chan.as_ref().map(|chan| {
|
||||
chan.send(devtools_traits::ServerExitMsg).unwrap();
|
||||
chan.send(DevtoolsControlMsg::ServerExitMsg).unwrap();
|
||||
});
|
||||
self.storage_task.send(StorageTaskMsg::Exit).unwrap();
|
||||
self.font_cache_task.exit();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue