aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/browsercontext.rs
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2015-07-20 15:41:16 +0200
committerMs2ger <ms2ger@gmail.com>2015-07-20 15:41:16 +0200
commit7491728a9c2110eccc72ed7cf9cb8aaa893e9b25 (patch)
tree734831af01e4aeb61e67d34c9b688c2436b27b92 /components/script/dom/browsercontext.rs
parenta432b14e689275ada48c4303609e4e8d4d5abef3 (diff)
downloadservo-7491728a9c2110eccc72ed7cf9cb8aaa893e9b25.tar.gz
servo-7491728a9c2110eccc72ed7cf9cb8aaa893e9b25.zip
Rename BrowserContext to BrowsingContext.
Diffstat (limited to 'components/script/dom/browsercontext.rs')
-rw-r--r--components/script/dom/browsercontext.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/components/script/dom/browsercontext.rs b/components/script/dom/browsercontext.rs
index 9dc5590cdcb..595153f1fc3 100644
--- a/components/script/dom/browsercontext.rs
+++ b/components/script/dom/browsercontext.rs
@@ -30,16 +30,16 @@ use std::default::Default;
#[derive(JSTraceable)]
#[privatize]
#[allow(raw_pointer_derive)]
-pub struct BrowserContext {
+pub struct BrowsingContext {
history: Vec<SessionHistoryEntry>,
active_index: usize,
window_proxy: Heap<*mut JSObject>,
frame_element: Option<JS<Element>>,
}
-impl BrowserContext {
- pub fn new(document: &Document, frame_element: Option<&Element>) -> BrowserContext {
- BrowserContext {
+impl BrowsingContext {
+ pub fn new(document: &Document, frame_element: Option<&Element>) -> BrowsingContext {
+ BrowsingContext {
history: vec!(SessionHistoryEntry::new(document)),
active_index: 0,
window_proxy: Heap::default(),
@@ -90,7 +90,7 @@ impl BrowserContext {
#[derive(JSTraceable)]
pub struct SessionHistoryEntry {
document: JS<Document>,
- children: Vec<BrowserContext>
+ children: Vec<BrowsingContext>
}
impl SessionHistoryEntry {