aboutsummaryrefslogtreecommitdiffstats
path: root/components/msg/constellation_msg.rs
diff options
context:
space:
mode:
authorRavi Shankar <wafflespeanut@gmail.com>2015-09-24 02:12:45 +0530
committerRavi Shankar <wafflespeanut@gmail.com>2015-09-24 02:12:45 +0530
commit889eec364b6e3df22d36581008289e6fbfb8b39f (patch)
tree056e9dbc10fb3879b4a281296fe99e88490aacc3 /components/msg/constellation_msg.rs
parent705ad72aee58b4fc636bca3a2784c7643048336d (diff)
downloadservo-889eec364b6e3df22d36581008289e6fbfb8b39f.tar.gz
servo-889eec364b6e3df22d36581008289e6fbfb8b39f.zip
sorted the extern crate, mod & use declarations
Diffstat (limited to 'components/msg/constellation_msg.rs')
-rw-r--r--components/msg/constellation_msg.rs4
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>);