Bumping manifests a=b2g-bump
[gecko.git] / dom / webidl / BluetoothDiscoveryStateChangedEvent.webidl
blob212fabce4bf5b2a28a3e506ce63b99b2b8424fb5
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 file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  */
7 [Constructor(DOMString type,
8              optional BluetoothDiscoveryStateChangedEventInit eventInitDict),
9  CheckPermissions="bluetooth"]
10 interface BluetoothDiscoveryStateChangedEvent : Event
12     readonly attribute boolean discovering;
15 dictionary BluetoothDiscoveryStateChangedEventInit : EventInit
17     boolean discovering = false;