blob: c1f8b5fe7143fdcd3f065b91d8c88bd26acc3ca8 [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
[
RuntimeEnabled=WebBluetooth,
SecureContext
] 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;
};