aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/gamepadlist.rs
diff options
context:
space:
mode:
authorchansuke <chansuke@georepublic.de>2018-09-18 23:24:15 +0900
committerJosh Matthews <josh@joshmatthews.net>2018-09-19 17:40:47 -0400
commitc37a345dc9f4dda6ea29c42f96f6c7201c42cbac (patch)
tree1f05b49bac02318455a59d5b143c186fd872bdb9 /components/script/dom/gamepadlist.rs
parent2ca7a134736bb4759ff209c1bc0b6dc3cc1984c9 (diff)
downloadservo-c37a345dc9f4dda6ea29c42f96f6c7201c42cbac.tar.gz
servo-c37a345dc9f4dda6ea29c42f96f6c7201c42cbac.zip
Format script component
Diffstat (limited to 'components/script/dom/gamepadlist.rs')
-rw-r--r--components/script/dom/gamepadlist.rs24
1 files changed, 17 insertions, 7 deletions
diff --git a/components/script/dom/gamepadlist.rs b/components/script/dom/gamepadlist.rs
index f767d001343..1e48e7560ea 100644
--- a/components/script/dom/gamepadlist.rs
+++ b/components/script/dom/gamepadlist.rs
@@ -15,26 +15,33 @@ use dom_struct::dom_struct;
#[dom_struct]
pub struct GamepadList {
reflector_: Reflector,
- list: DomRefCell<Vec<Dom<Gamepad>>>
+ list: DomRefCell<Vec<Dom<Gamepad>>>,
}
impl GamepadList {
fn new_inherited(list: &[&Gamepad]) -> GamepadList {
GamepadList {
reflector_: Reflector::new(),
- list: DomRefCell::new(list.iter().map(|g| Dom::from_ref(&**g)).collect())
+ list: DomRefCell::new(list.iter().map(|g| Dom::from_ref(&**g)).collect()),
}
}
pub fn new(global: &GlobalScope, list: &[&Gamepad]) -> DomRoot<GamepadList> {
- reflect_dom_object(Box::new(GamepadList::new_inherited(list)),
- global,
- GamepadListBinding::Wrap)
+ reflect_dom_object(
+ Box::new(GamepadList::new_inherited(list)),
+ global,
+ GamepadListBinding::Wrap,
+ )
}
pub fn add_if_not_exists(&self, gamepads: &[DomRoot<Gamepad>]) {
for gamepad in gamepads {
- if !self.list.borrow().iter().any(|g| g.gamepad_id() == gamepad.gamepad_id()) {
+ if !self
+ .list
+ .borrow()
+ .iter()
+ .any(|g| g.gamepad_id() == gamepad.gamepad_id())
+ {
self.list.borrow_mut().push(Dom::from_ref(&*gamepad));
// Ensure that the gamepad has the correct index
gamepad.update_index(self.list.borrow().len() as i32 - 1);
@@ -51,7 +58,10 @@ impl GamepadListMethods for GamepadList {
// https://w3c.github.io/gamepad/#dom-navigator-getgamepads
fn Item(&self, index: u32) -> Option<DomRoot<Gamepad>> {
- self.list.borrow().get(index as usize).map(|gamepad| DomRoot::from_ref(&**gamepad))
+ self.list
+ .borrow()
+ .get(index as usize)
+ .map(|gamepad| DomRoot::from_ref(&**gamepad))
}
// https://w3c.github.io/gamepad/#dom-navigator-getgamepads