diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2013-10-15 16:37:33 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2013-10-16 14:55:07 +0100 |
commit | a325905fa6f1b3caf16cbaefd0807464e12860c9 (patch) | |
tree | e2cc7e225fad1f4dbb82243ea8e7a440f820d533 /src/components/script/layout_interface.rs | |
parent | 321f56c2425f196f0c0d321934fdde7f0c3eb337 (diff) | |
download | servo-a325905fa6f1b3caf16cbaefd0807464e12860c9.tar.gz servo-a325905fa6f1b3caf16cbaefd0807464e12860c9.zip |
Move the gfx::geometry module to servo_util::geometry.
This is part of #1006, in order to use Au from the script crate
without introducing a circular crate dependency.
Diffstat (limited to 'src/components/script/layout_interface.rs')
-rw-r--r-- | src/components/script/layout_interface.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/layout_interface.rs b/src/components/script/layout_interface.rs index ce7e6b5bd36..2349611ebaf 100644 --- a/src/components/script/layout_interface.rs +++ b/src/components/script/layout_interface.rs @@ -12,7 +12,7 @@ use std::comm::{Chan, SharedChan}; use geom::rect::Rect; use geom::size::Size2D; use geom::point::Point2D; -use gfx::geometry::Au; +use servo_util::geometry::Au; use newcss::stylesheet::Stylesheet; use extra::url::Url; |