diff options
Diffstat (limited to 'components/script/dom/testbindingiterable.rs')
-rw-r--r-- | components/script/dom/testbindingiterable.rs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/components/script/dom/testbindingiterable.rs b/components/script/dom/testbindingiterable.rs index 5befaaa2c59..1ed0434c70b 100644 --- a/components/script/dom/testbindingiterable.rs +++ b/components/script/dom/testbindingiterable.rs @@ -7,11 +7,12 @@ use crate::dom::bindings::cell::DomRefCell; use crate::dom::bindings::codegen::Bindings::TestBindingIterableBinding::TestBindingIterableMethods; use crate::dom::bindings::error::Fallible; -use crate::dom::bindings::reflector::{reflect_dom_object, Reflector}; +use crate::dom::bindings::reflector::{reflect_dom_object2, Reflector}; use crate::dom::bindings::root::DomRoot; use crate::dom::bindings::str::DOMString; use crate::dom::globalscope::GlobalScope; use dom_struct::dom_struct; +use js::rust::HandleObject; #[dom_struct] pub struct TestBindingIterable { @@ -20,19 +21,20 @@ pub struct TestBindingIterable { } impl TestBindingIterable { - fn new(global: &GlobalScope) -> DomRoot<TestBindingIterable> { - reflect_dom_object( + fn new(global: &GlobalScope, proto: Option<HandleObject>) -> DomRoot<TestBindingIterable> { + reflect_dom_object2( Box::new(TestBindingIterable { reflector: Reflector::new(), vals: DomRefCell::new(vec![]), }), global, + proto, ) } #[allow(non_snake_case)] - pub fn Constructor(global: &GlobalScope) -> Fallible<DomRoot<TestBindingIterable>> { - Ok(TestBindingIterable::new(global)) + pub fn Constructor(global: &GlobalScope, proto: Option<HandleObject>) -> Fallible<DomRoot<TestBindingIterable>> { + Ok(TestBindingIterable::new(global, proto)) } } |