Rename GlobalRoot::root_ref() to GlobalRoot::r() for consistency.

This commit is contained in:
Ms2ger 2015-01-01 12:21:47 +01:00
parent d09d245ee1
commit 6077ed0ce8
9 changed files with 23 additions and 23 deletions

View file

@ -38,13 +38,13 @@ impl Storage {
fn get_url(&self) -> Url {
let global_root = self.global.root();
let global_ref = global_root.root_ref();
let global_ref = global_root.r();
global_ref.get_url()
}
fn get_storage_task(&self) -> StorageTask {
let global_root = self.global.root();
let global_ref = global_root.root_ref();
let global_ref = global_root.r();
global_ref.as_window().storage_task()
}