blob: e8ce37084952c2b8a2185f46669619cda2f6a97e [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://webbluetoothcg.github.io/web-bluetooth/#bluetoothdevice
// Implement BluetoothDevice interface: http://crbug.com/421668
[
DependentLifetime,
RuntimeEnabled=WebBluetooth
] interface BluetoothDevice : EventTarget
// Implement ServiceEventHandlers interface: http://crbug.com/421670
// : ServiceEventHandlers
{
// Implement BluetoothDevice interface: http://crbug.com/421668
readonly attribute DOMString id;
readonly attribute DOMString? name;
readonly attribute BluetoothRemoteGATTServer gatt;
attribute EventHandler ongattserverdisconnected;
};