| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 module bluetooth.mojom; | 5 module bluetooth.mojom; |
| 6 | 6 |
| 7 import "device/bluetooth/public/interfaces/uuid.mojom"; | 7 import "device/bluetooth/public/interfaces/uuid.mojom"; |
| 8 | 8 |
| 9 // TODO(crbug.com/657632): Remove when numerical values can be optional. | 9 // TODO(crbug.com/657632): Remove when numerical values can be optional. |
| 10 struct RSSIWrapper { | 10 struct RSSIWrapper { |
| 11 int8 value; | 11 int8 value; |
| 12 }; | 12 }; |
| 13 | 13 |
| 14 struct DeviceInfo { | 14 struct DeviceInfo { |
| 15 string? name; | 15 string? name; |
| 16 string name_for_display; | 16 string name_for_display; |
| 17 string address; | 17 string address; |
| 18 bool is_gatt_connected; | 18 bool is_gatt_connected; |
| 19 RSSIWrapper? rssi; | 19 RSSIWrapper? rssi; |
| 20 }; | 20 }; |
| 21 | 21 |
| 22 struct ServiceInfo { | 22 struct ServiceInfo { |
| 23 string id; |
| 23 UUID uuid; | 24 UUID uuid; |
| 24 bool is_primary; | 25 bool is_primary; |
| 25 }; | 26 }; |
| 26 | 27 |
| 27 interface Device { | 28 interface Device { |
| 28 // Disconnects and deletes the Device. | 29 // Disconnects and deletes the Device. |
| 29 Disconnect(); | 30 Disconnect(); |
| 30 | 31 |
| 31 // Gets basic information about the device. Returns null, if no device is | 32 // Gets basic information about the device. Returns null, if no device is |
| 32 // available. | 33 // available. |
| 33 GetInfo() => (DeviceInfo? info); | 34 GetInfo() => (DeviceInfo? info); |
| 34 | 35 |
| 35 // Gets the GATT Services in this device's GATT Server. | 36 // Gets the GATT Services in this device's GATT Server. |
| 36 GetServices() => (array<ServiceInfo> services); | 37 GetServices() => (array<ServiceInfo> services); |
| 37 }; | 38 }; |
| OLD | NEW |