diff options
Diffstat (limited to 'components/script/dom/browsercontext.rs')
-rw-r--r-- | components/script/dom/browsercontext.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/browsercontext.rs b/components/script/dom/browsercontext.rs index 37065a7f68f..9dc5590cdcb 100644 --- a/components/script/dom/browsercontext.rs +++ b/components/script/dom/browsercontext.rs @@ -27,7 +27,7 @@ use js::{JSTrue, JSFalse}; use std::ptr; use std::default::Default; -#[jstraceable] +#[derive(JSTraceable)] #[privatize] #[allow(raw_pointer_derive)] pub struct BrowserContext { @@ -87,7 +87,7 @@ impl BrowserContext { // without a reflector, so we don't mark this as #[dom_struct] #[must_root] #[privatize] -#[jstraceable] +#[derive(JSTraceable)] pub struct SessionHistoryEntry { document: JS<Document>, children: Vec<BrowserContext> |