Library changes

This commit is contained in:
Keegan McAllister 2013-08-09 13:24:10 -07:00
parent ffe60ea027
commit be061a9aa0
45 changed files with 167 additions and 183 deletions

View file

@ -23,7 +23,7 @@ use std::cast::transmute_region;
use geom::{Point2D, Rect, Size2D, SideOffsets2D};
use servo_net::image::base::Image;
use servo_util::range::Range;
use extra::arc::ARC;
use extra::arc::Arc;
/// A list of rendering operations to be performed.
pub struct DisplayList<E> {
@ -93,7 +93,7 @@ pub struct TextDisplayItem<E> {
/// Renders an image.
pub struct ImageDisplayItem<E> {
base: BaseDisplayItem<E>,
image: ARC<~Image>,
image: Arc<~Image>,
}
/// Renders a border.