Remove Untraceable from workerglobalscope.rs

This commit is contained in:
Manish Goregaokar 2014-09-29 05:25:35 +05:30
parent 16d12d0a82
commit 0fdee70cbf
2 changed files with 14 additions and 13 deletions

View file

@ -44,6 +44,7 @@ use style::PropertyDeclarationBlock;
use std::comm::{Receiver, Sender};
use hubbub::hubbub::QuirksMode;
use string_cache::{Atom, Namespace};
use js::rust::Cx;
impl<T: Reflectable> JSTraceable for JS<T> {
fn trace(&self, trc: *mut JSTracer) {
@ -233,6 +234,7 @@ untraceable!(PropertyDeclarationBlock)
// in one of these make sure it is propagated properly to containing structs
untraceable!(SubpageId, WindowSizeData, PipelineId)
untraceable!(QuirksMode)
untraceable!(Cx)
impl<'a> JSTraceable for &'a str {
#[inline]