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

@ -9,7 +9,7 @@ use http_loader;
use std::cell::Cell;
use std::comm::{Chan, Port, SharedChan};
use extra::net::url::{Url, to_str};
use extra::url::Url;
use util::spawn_listener;
pub enum ControlMsg {
@ -94,7 +94,7 @@ impl ResourceManager {
match self.get_loader_factory(&url) {
Some(loader_factory) => {
debug!("resource_task: loading url: %s", to_str(&url));
debug!("resource_task: loading url: %s", url.to_str());
loader_factory(url, progress_chan);
}
None => {