diff options
author | Johann Tuffe <tafia973@gmail.com> | 2015-08-20 20:47:12 +0800 |
---|---|---|
committer | Johann Tuffe <tafia973@gmail.com> | 2015-08-20 20:47:12 +0800 |
commit | ec07178b6fc5a0ab559eb191952101cf92b5d666 (patch) | |
tree | f7550ec6d7623b57b29d3030686f4fdb609f0b36 /components/util/mem.rs | |
parent | d3c7e31722fb194f1a266eec9ae57d2f2557e7a6 (diff) | |
download | servo-ec07178b6fc5a0ab559eb191952101cf92b5d666.tar.gz servo-ec07178b6fc5a0ab559eb191952101cf92b5d666.zip |
sort all uses
Diffstat (limited to 'components/util/mem.rs')
-rw-r--r-- | components/util/mem.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/components/util/mem.rs b/components/util/mem.rs index 8619cbf2d5e..f336d22be0e 100644 --- a/components/util/mem.rs +++ b/components/util/mem.rs @@ -9,35 +9,35 @@ use std::cell::{Cell, RefCell}; use std::collections::{HashMap, LinkedList, hash_state}; use std::hash::Hash; use std::mem::{size_of, transmute}; -use std::sync::Arc; use std::rc::Rc; use std::result::Result; +use std::sync::Arc; use azure::azure_hl::Color; use cssparser::Color as CSSParserColor; use cssparser::RGBA; use cursor::Cursor; -use euclid::{Point2D, Rect, SideOffsets2D, Size2D, Matrix2D, Matrix4}; use euclid::length::Length; use euclid::scale_factor::ScaleFactor; +use euclid::{Point2D, Rect, SideOffsets2D, Size2D, Matrix2D, Matrix4}; use geometry::{PagePx, ViewportPx, Au}; use html5ever::tree_builder::QuirksMode; -use layers::geometry::DevicePixel; +use hyper::header::ContentType; +use hyper::http::RawStatus; +use hyper::method::Method; +use hyper::mime::{Mime, TopLevel, SubLevel, Attr, Value}; use js::jsapi::Heap; -use js::rust::GCMethods; use js::jsval::JSVal; +use js::rust::GCMethods; +use layers::geometry::DevicePixel; use logical_geometry::WritingMode; +use rand::OsRng; use range::Range; +use selectors::parser::{PseudoElement, Selector, CompoundSelector, SimpleSelector, Combinator}; use str::LengthOrPercentageOrAuto; use string_cache::atom::Atom; use string_cache::namespace::Namespace; use url; -use hyper::method::Method; -use hyper::http::RawStatus; -use hyper::header::ContentType; -use hyper::mime::{Mime, TopLevel, SubLevel, Attr, Value}; -use selectors::parser::{PseudoElement, Selector, CompoundSelector, SimpleSelector, Combinator}; -use rand::OsRng; extern { // Get the size of a heap block. |