Make some DOM members private.

I have not reviewed if this is the complete set of members that can be made
private.
This commit is contained in:
Ms2ger 2014-06-28 13:42:39 +02:00
parent 9f915e9e42
commit bba9e58df1
19 changed files with 61 additions and 61 deletions

View file

@ -11,9 +11,9 @@ use dom::window::Window;
#[deriving(Encodable)]
pub struct AttrList {
pub reflector_: Reflector,
pub window: JS<Window>,
pub owner: JS<Element>,
reflector_: Reflector,
window: JS<Window>,
owner: JS<Element>,
}
impl AttrList {