diff options
author | Dan Fox <iamdanfox@gmail.com> | 2015-03-05 17:42:05 +0000 |
---|---|---|
committer | Dan Fox <iamdanfox@gmail.com> | 2015-03-05 17:42:05 +0000 |
commit | 559ff68b31eabdf1025fba2fcc386b504256a0b2 (patch) | |
tree | 48e10efbc7e3389b88d53666bd2e1b92ec198da0 /components/layout/display_list_builder.rs | |
parent | 19686acdec7a8f6e36fe999a2896ed44718f42d6 (diff) | |
download | servo-559ff68b31eabdf1025fba2fcc386b504256a0b2.tar.gz servo-559ff68b31eabdf1025fba2fcc386b504256a0b2.zip |
Get rid of servo_util
Diffstat (limited to 'components/layout/display_list_builder.rs')
-rw-r--r-- | components/layout/display_list_builder.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/layout/display_list_builder.rs b/components/layout/display_list_builder.rs index b4fb0001a80..c9e82e7eb8e 100644 --- a/components/layout/display_list_builder.rs +++ b/components/layout/display_list_builder.rs @@ -37,10 +37,10 @@ use msg::compositor_msg::ScrollPolicy; use msg::constellation_msg::Msg as ConstellationMsg; use msg::constellation_msg::ConstellationChan; use net::image::holder::ImageHolder; -use servo_util::cursor::Cursor; -use servo_util::geometry::{self, Au, ZERO_POINT, to_px, to_frac_px}; -use servo_util::logical_geometry::{LogicalPoint, LogicalRect, LogicalSize}; -use servo_util::opts; +use util::cursor::Cursor; +use util::geometry::{self, Au, ZERO_POINT, to_px, to_frac_px}; +use util::logical_geometry::{LogicalPoint, LogicalRect, LogicalSize}; +use util::opts; use std::cmp; use std::default::Default; use std::iter::repeat; |