diff options
author | Keegan McAllister <kmcallister@mozilla.com> | 2013-08-09 13:24:10 -0700 |
---|---|---|
committer | Keegan McAllister <kmcallister@mozilla.com> | 2013-08-15 13:55:40 -0700 |
commit | be061a9aa0384fc36b42f4f8902b6c8cb76d30cc (patch) | |
tree | 4ede58c0b6442422f720684686cd4715dc143d2c /src/components/msg | |
parent | ffe60ea02704c0bd4545a194bff3f2feafd0133c (diff) | |
download | servo-be061a9aa0384fc36b42f4f8902b6c8cb76d30cc.tar.gz servo-be061a9aa0384fc36b42f4f8902b6c8cb76d30cc.zip |
Library changes
Diffstat (limited to 'src/components/msg')
-rw-r--r-- | src/components/msg/compositor_msg.rs | 2 | ||||
-rw-r--r-- | src/components/msg/constellation_msg.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/msg/compositor_msg.rs b/src/components/msg/compositor_msg.rs index 80f0c0703d3..410da56f6e0 100644 --- a/src/components/msg/compositor_msg.rs +++ b/src/components/msg/compositor_msg.rs @@ -61,7 +61,7 @@ pub trait RenderListener { fn new_layer(&self, PipelineId, Size2D<uint>); fn resize_layer(&self, PipelineId, Size2D<uint>); fn delete_layer(&self, PipelineId); - fn paint(&self, id: PipelineId, layer_buffer_set: arc::ARC<LayerBufferSet>); + fn paint(&self, id: PipelineId, layer_buffer_set: arc::Arc<LayerBufferSet>); fn set_render_state(&self, render_state: RenderState); } diff --git a/src/components/msg/constellation_msg.rs b/src/components/msg/constellation_msg.rs index 419aadf1ae3..af0a01184a3 100644 --- a/src/components/msg/constellation_msg.rs +++ b/src/components/msg/constellation_msg.rs @@ -6,7 +6,7 @@ /// coupling between these two components use std::comm::{Chan, SharedChan}; -use extra::net::url::Url; +use extra::url::Url; use extra::future::Future; use geom::size::Size2D; |