auto merge of #2405 : Ms2ger/servo/active_timers, r=jdm

This commit is contained in:
bors-servo 2014-05-12 13:52:43 -04:00
commit 1657a142cc

View file

@ -70,7 +70,7 @@ pub struct Window {
pub location: Option<JS<Location>>,
pub navigator: Option<JS<Navigator>>,
pub image_cache_task: ImageCacheTask,
pub active_timers: ~HashMap<TimerId, TimerHandle>,
pub active_timers: HashMap<TimerId, TimerHandle>,
pub next_timer_handle: i32,
pub compositor: Untraceable<~ScriptListener>,
pub browser_context: Option<BrowserContext>,
@ -380,7 +380,7 @@ impl Window {
location: None,
navigator: None,
image_cache_task: image_cache_task,
active_timers: ~HashMap::new(),
active_timers: HashMap::new(),
next_timer_handle: 0,
browser_context: None,
performance: None,