aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/bindings/utils.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/script/dom/bindings/utils.rs')
-rw-r--r--src/components/script/dom/bindings/utils.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/script/dom/bindings/utils.rs b/src/components/script/dom/bindings/utils.rs
index ef1cb11bee3..4270eef0a6f 100644
--- a/src/components/script/dom/bindings/utils.rs
+++ b/src/components/script/dom/bindings/utils.rs
@@ -528,15 +528,15 @@ pub fn initialize_global(global: *JSObject) {
}
pub trait Reflectable {
- fn get_wrappercache(&mut self) -> &mut WrapperCache;
+ fn get_wrappercache(&mut self) -> &mut Reflector;
fn wrap_object_shared(@mut self, cx: *JSContext, scope: *JSObject) -> *JSObject;
}
-pub struct WrapperCache {
+pub struct Reflector {
wrapper: *JSObject
}
-impl WrapperCache {
+impl Reflector {
pub fn get_wrapper(&self) -> *JSObject {
unsafe { cast::transmute(self.wrapper) }
}
@@ -549,8 +549,8 @@ impl WrapperCache {
return to_unsafe_ptr(&self.wrapper);
}
- pub fn new() -> WrapperCache {
- WrapperCache {
+ pub fn new() -> Reflector {
+ Reflector {
wrapper: ptr::null()
}
}