mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
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:
parent
9f915e9e42
commit
bba9e58df1
19 changed files with 61 additions and 61 deletions
|
@ -48,7 +48,7 @@ pub enum EventTypeId {
|
|||
#[deriving(Encodable)]
|
||||
pub struct Event {
|
||||
pub type_id: EventTypeId,
|
||||
pub reflector_: Reflector,
|
||||
reflector_: Reflector,
|
||||
pub current_target: Cell<Option<JS<EventTarget>>>,
|
||||
pub target: Cell<Option<JS<EventTarget>>>,
|
||||
type_: Traceable<RefCell<DOMString>>,
|
||||
|
@ -61,7 +61,7 @@ pub struct Event {
|
|||
pub trusted: Traceable<Cell<bool>>,
|
||||
pub dispatching: Traceable<Cell<bool>>,
|
||||
pub initialized: Traceable<Cell<bool>>,
|
||||
pub timestamp: u64,
|
||||
timestamp: u64,
|
||||
}
|
||||
|
||||
impl Event {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue