diff options
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; |