diff options
Diffstat (limited to 'components/msg/constellation_msg.rs')
-rw-r--r-- | components/msg/constellation_msg.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/msg/constellation_msg.rs b/components/msg/constellation_msg.rs index dc42e2deca5..c43a5566a1c 100644 --- a/components/msg/constellation_msg.rs +++ b/components/msg/constellation_msg.rs @@ -17,13 +17,13 @@ use layers::geometry::DevicePixel; use offscreen_gl_context::GLContextAttributes; use png::Image; use std::collections::HashMap; -use std::sync::mpsc::{channel, Sender, Receiver}; +use std::sync::mpsc::{Receiver, Sender, channel}; use style_traits::viewport::ViewportConstraints; use url::Url; use util::cursor::Cursor; use util::geometry::{PagePx, ViewportPx}; use util::mem::HeapSizeOf; -use webdriver_msg::{WebDriverScriptCommand, LoadStatus}; +use webdriver_msg::{LoadStatus, WebDriverScriptCommand}; #[derive(Clone)] pub struct ConstellationChan(pub Sender<Msg>); |