mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
f5c91080a9
--- dom/bluetooth/BluetoothAdapter.cpp | 16 ++++++++++++++- dom/bluetooth/Makefile.in | 1 + .../nsIDOMBluetoothDeviceAddressEvent.idl | 21 ++++++++++++++++++++ js/xpconnect/src/event_impl_gen.conf.in | 3 +++ 4 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 dom/bluetooth/nsIDOMBluetoothDeviceAddressEvent.idl
22 lines
802 B
Plaintext
22 lines
802 B
Plaintext
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "nsIDOMEvent.idl"
|
|
|
|
[scriptable, builtinclass, uuid(afcb832f-bbb5-45fa-b703-f8185bd2d26d)]
|
|
interface nsIDOMBluetoothDeviceAddressEvent : nsIDOMEvent
|
|
{
|
|
readonly attribute DOMString deviceAddress;
|
|
|
|
[noscript] void initBluetoothDeviceAddressEvent(in DOMString aType,
|
|
in boolean aCanBubble,
|
|
in boolean aCancelable,
|
|
in DOMString aDeviceAddress);
|
|
};
|
|
|
|
dictionary BluetoothDeviceAddressEventInit : EventInit
|
|
{
|
|
DOMString deviceAddress;
|
|
};
|