diff options
author | Brian Anderson <banderson@mozilla.com> | 2013-06-24 18:42:17 -0700 |
---|---|---|
committer | Brian Anderson <banderson@mozilla.com> | 2013-06-26 13:44:26 -0700 |
commit | 56e5ba1b825b77eaf56db7211ba7bf9549421c0b (patch) | |
tree | 008ba1ffb9fe69cf189c3cc461d65f41dd0fec9b /src/components/script/layout_interface.rs | |
parent | a01f6b97f23b06dda6587f9b1c3d4e2ec3cf1f82 (diff) | |
download | servo-56e5ba1b825b77eaf56db7211ba7bf9549421c0b.tar.gz servo-56e5ba1b825b77eaf56db7211ba7bf9549421c0b.zip |
Update for language changes
Diffstat (limited to 'src/components/script/layout_interface.rs')
-rw-r--r-- | src/components/script/layout_interface.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/script/layout_interface.rs b/src/components/script/layout_interface.rs index d4d0aef7cf3..3a1531b83e6 100644 --- a/src/components/script/layout_interface.rs +++ b/src/components/script/layout_interface.rs @@ -9,13 +9,13 @@ use dom::node::{AbstractNode, ScriptView, LayoutView}; use script_task::{ScriptMsg, ScriptChan}; -use core::comm::{Chan, SharedChan}; +use std::comm::{Chan, SharedChan}; use geom::rect::Rect; use geom::size::Size2D; use geom::point::Point2D; use gfx::geometry::Au; use newcss::stylesheet::Stylesheet; -use std::net::url::Url; +use extra::net::url::Url; /// Asynchronous messages that script can send to layout. /// |