mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
69 lines
2.8 KiB
Plaintext
69 lines
2.8 KiB
Plaintext
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* 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 "nsIDOMEventTarget.idl"
|
|
|
|
interface nsIDOMDOMRequest;
|
|
interface nsIDOMBlob;
|
|
interface nsIDOMBluetoothDevice;
|
|
|
|
[scriptable, builtinclass, uuid(7058d214-3575-4913-99ad-0980296f617a)]
|
|
interface nsIDOMBluetoothAdapter : nsIDOMEventTarget
|
|
{
|
|
readonly attribute DOMString address;
|
|
[binaryname(AdapterClass)] readonly attribute unsigned long class;
|
|
readonly attribute bool discovering;
|
|
|
|
[implicit_jscontext]
|
|
readonly attribute jsval devices;
|
|
|
|
[implicit_jscontext]
|
|
readonly attribute jsval uuids;
|
|
|
|
readonly attribute DOMString name;
|
|
readonly attribute bool discoverable;
|
|
// Unit: sec
|
|
readonly attribute unsigned long discoverableTimeout;
|
|
|
|
nsIDOMDOMRequest setName(in DOMString name);
|
|
nsIDOMDOMRequest setDiscoverable(in bool discoverable);
|
|
nsIDOMDOMRequest setDiscoverableTimeout(in unsigned long timeout);
|
|
nsIDOMDOMRequest startDiscovery();
|
|
nsIDOMDOMRequest stopDiscovery();
|
|
nsIDOMDOMRequest pair(in nsIDOMBluetoothDevice aDevice);
|
|
nsIDOMDOMRequest unpair(in nsIDOMBluetoothDevice aDevice);
|
|
nsIDOMDOMRequest getPairedDevices();
|
|
nsIDOMDOMRequest getConnectedDevices(in unsigned short aProfile);
|
|
nsIDOMDOMRequest setPinCode(in DOMString aDeviceAddress, in DOMString aPinCode);
|
|
nsIDOMDOMRequest setPasskey(in DOMString aDeviceAddress, in unsigned long aPasskey);
|
|
nsIDOMDOMRequest setPairingConfirmation(in DOMString aDeviceAddress, in bool aConfirmation);
|
|
nsIDOMDOMRequest setAuthorization(in DOMString aDeviceAddress, in bool aAllow);
|
|
|
|
/**
|
|
* Connect/Disconnect to a specific service of a target remote device.
|
|
* To check the value of service UUIDs, please check "Bluetooth Assigned
|
|
* Numbers" / "Service Discovery Protocol" for more information.
|
|
*
|
|
* @param aDeviceAddress Remote device address
|
|
* @param aProfile 2-octets service UUID
|
|
*/
|
|
nsIDOMDOMRequest connect(in DOMString aDeviceAddress, in unsigned short aProfile);
|
|
nsIDOMDOMRequest disconnect(in unsigned short aProfile);
|
|
|
|
// One device can only send one file at a time
|
|
nsIDOMDOMRequest sendFile(in DOMString aDeviceAddress, in nsIDOMBlob aBlob);
|
|
nsIDOMDOMRequest stopSendingFile(in DOMString aDeviceAddress);
|
|
nsIDOMDOMRequest confirmReceivingFile(in DOMString aDeviceAddress, in bool aConfirmation);
|
|
|
|
// Connect/Disconnect SCO (audio) connection
|
|
nsIDOMDOMRequest connectSco();
|
|
nsIDOMDOMRequest disconnectSco();
|
|
nsIDOMDOMRequest isScoConnected();
|
|
|
|
// Fired when discoverying and any device is discovered.
|
|
[implicit_jscontext] attribute jsval ondevicefound;
|
|
};
|