aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/testbindingpairiterable.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/testbindingpairiterable.rs')
-rw-r--r--components/script/dom/testbindingpairiterable.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/testbindingpairiterable.rs b/components/script/dom/testbindingpairiterable.rs
index 7d95e95e7d7..106fb5e850b 100644
--- a/components/script/dom/testbindingpairiterable.rs
+++ b/components/script/dom/testbindingpairiterable.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::TestBindingPairIterableBinding;
use dom::bindings::codegen::Bindings::TestBindingPairIterableBinding::TestBindingPairIterableMethods;
use dom::bindings::error::Fallible;
@@ -18,7 +18,7 @@ use dom_struct::dom_struct;
#[dom_struct]
pub struct TestBindingPairIterable {
reflector: Reflector,
- map: DOMRefCell<Vec<(DOMString, u32)>>,
+ map: DomRefCell<Vec<(DOMString, u32)>>,
}
impl Iterable for TestBindingPairIterable {
@@ -39,7 +39,7 @@ impl TestBindingPairIterable {
fn new(global: &GlobalScope) -> Root<TestBindingPairIterable> {
reflect_dom_object(box TestBindingPairIterable {
reflector: Reflector::new(),
- map: DOMRefCell::new(vec![]),
+ map: DomRefCell::new(vec![]),
}, global, TestBindingPairIterableBinding::TestBindingPairIterableWrap)
}