Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
[gecko.git] / dom / webidl / BluetoothManager2.webidl
blobfbc9435e727b76721f8a61f280d286a0003079f8
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 [CheckPermissions="bluetooth"]
7 interface BluetoothManager: EventTarget
9   readonly attribute BluetoothAdapter? defaultAdapter;
11   // Fired when attribute(s) of BluetoothManager changed
12            attribute EventHandler onattributechanged;
14   // Fired when a new adapter is plugged in
15            attribute EventHandler onadapteradded;
17   // Fired when an existing adapter is unplugged
18            attribute EventHandler onadapterremoved;
20   sequence<BluetoothAdapter> getAdapters();
23 enum BluetoothManagerAttribute
25   "unknown",
26   "defaultAdapter"