Rename browser_context identifiers to browsing_context.

This commit is contained in:
Ms2ger 2015-07-20 15:56:32 +02:00
parent 7491728a9c
commit 6d7bc2cffe
4 changed files with 25 additions and 25 deletions

View file

@ -702,7 +702,7 @@ pub unsafe extern fn outerize_global(_cx: *mut JSContext, obj: HandleObject) ->
let win: Root<window::Window> = native_from_handleobject(obj).unwrap();
// FIXME(https://github.com/rust-lang/rust/issues/23338)
let win = win.r();
let context = win.browser_context();
let context = win.browsing_context();
context.as_ref().unwrap().window_proxy()
}