Remove generate_cacheable_wrapper_htmlmediaelement!

This commit is contained in:
Tetsuharu OHZEKI 2014-06-28 03:43:05 +09:00
parent 6b153834c9
commit 717706ce5d
3 changed files with 14 additions and 10 deletions

View file

@ -5,6 +5,7 @@
use dom::bindings::codegen::Bindings::HTMLVideoElementBinding;
use dom::bindings::codegen::InheritTypes::HTMLVideoElementDerived;
use dom::bindings::js::{JSRef, Temporary};
use dom::bindings::utils::{Reflectable, Reflector};
use dom::document::Document;
use dom::element::HTMLVideoElementTypeId;
use dom::eventtarget::{EventTarget, NodeTargetTypeId};
@ -38,3 +39,9 @@ impl HTMLVideoElement {
pub trait HTMLVideoElementMethods {
}
impl Reflectable for HTMLVideoElement {
fn reflector<'a>(&'a self) -> &'a Reflector {
self.htmlmediaelement.reflector()
}
}