aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/testbindingiterable.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/testbindingiterable.rs')
-rw-r--r--components/script/dom/testbindingiterable.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/testbindingiterable.rs b/components/script/dom/testbindingiterable.rs
index 2ee9fca631d..a412c5e288d 100644
--- a/components/script/dom/testbindingiterable.rs
+++ b/components/script/dom/testbindingiterable.rs
@@ -4,7 +4,7 @@
// check-tidy: no specs after this line
-use dom::bindings::cell::DOMRefCell;
+use dom::bindings::cell::DomRefCell;
use dom::bindings::codegen::Bindings::TestBindingIterableBinding::{self, TestBindingIterableMethods};
use dom::bindings::error::Fallible;
use dom::bindings::reflector::{Reflector, reflect_dom_object};
@@ -16,14 +16,14 @@ use dom_struct::dom_struct;
#[dom_struct]
pub struct TestBindingIterable {
reflector: Reflector,
- vals: DOMRefCell<Vec<DOMString>>,
+ vals: DomRefCell<Vec<DOMString>>,
}
impl TestBindingIterable {
fn new(global: &GlobalScope) -> Root<TestBindingIterable> {
reflect_dom_object(box TestBindingIterable {
reflector: Reflector::new(),
- vals: DOMRefCell::new(vec![]),
+ vals: DomRefCell::new(vec![]),
}, global, TestBindingIterableBinding::Wrap)
}