mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
71a7aa2236
This patch mainly covers: 1) Implement register/unregister client, connect/disconnect methods in BluetoothGatt object. 2) Add/Modify related webidls for 1). 3) Implement result handlers, notifications in BluetoothGattManager.
61 lines
1.7 KiB
Plaintext
61 lines
1.7 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/. */
|
|
|
|
[CheckPermissions="bluetooth"]
|
|
interface BluetoothDevice : EventTarget
|
|
{
|
|
readonly attribute DOMString address;
|
|
readonly attribute BluetoothClassOfDevice cod;
|
|
readonly attribute DOMString name;
|
|
readonly attribute boolean paired;
|
|
readonly attribute BluetoothDeviceType type;
|
|
|
|
/**
|
|
* Retrieve the BluetoothGatt interface to interact with remote BLE devices.
|
|
* This attribute is null if the device type is not dual or le.
|
|
*/
|
|
readonly attribute BluetoothGatt? gatt;
|
|
|
|
[Cached, Pure]
|
|
readonly attribute sequence<DOMString> uuids;
|
|
|
|
// Fired when attribute(s) of BluetoothDevice changed
|
|
attribute EventHandler onattributechanged;
|
|
|
|
/**
|
|
* Fetch the up-to-date UUID list of each bluetooth service that the device
|
|
* provides and refresh the cache value of attribute uuids if it is updated.
|
|
*
|
|
* If the operation succeeds, the promise will be resolved with up-to-date
|
|
* UUID list which is identical to attribute uuids.
|
|
*/
|
|
[NewObject]
|
|
Promise<sequence<DOMString>> fetchUuids();
|
|
};
|
|
|
|
enum BluetoothDeviceType
|
|
{
|
|
"unknown",
|
|
"classic",
|
|
"le",
|
|
"dual"
|
|
};
|
|
|
|
/*
|
|
* Possible device attributes that attributechanged event reports.
|
|
* Note "address" and "type" are excluded since they never change once
|
|
* BluetoothDevice is created.
|
|
*/
|
|
enum BluetoothDeviceAttribute
|
|
{
|
|
"unknown",
|
|
"cod",
|
|
"name",
|
|
"paired",
|
|
"uuids"
|
|
};
|
|
|