OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
| 5 // https://webbluetoothcg.github.io/web-bluetooth/#idl-def-Bluetooth |
| 6 |
5 [ | 7 [ |
6 RuntimeEnabled=Geofencing, | 8 GarbageCollected, |
7 NoInterfaceObject, | 9 NoInterfaceObject, |
8 GarbageCollected, | 10 RuntimeEnabled=Bluetooth, |
9 ] interface GeofencingRegion { | 11 ] interface Bluetooth { |
10 readonly attribute DOMString id; | |
11 }; | 12 }; |
| 13 |
| 14 // http://crbug.com/420284 |
| 15 // Bluetooth implements BluetoothDiscovery; |
OLD | NEW |