make dom_struct derive HeapSizeOf,

closes #7357
This commit is contained in:
João Oliveira 2015-08-25 16:38:56 +01:00
parent af4c3901d8
commit fd87c8cb3e
155 changed files with 3 additions and 226 deletions

View file

@ -17,7 +17,6 @@ use util::str::DOMString;
// https://dom.spec.whatwg.org/#interface-customevent
#[dom_struct]
#[derive(HeapSizeOf)]
pub struct CustomEvent {
event: Event,
#[ignore_heap_size_of = "Defined in rust-mozjs"]
@ -85,4 +84,3 @@ impl<'a> CustomEventMethods for &'a CustomEvent {
event.InitEvent(type_, can_bubble, cancelable);
}
}