| 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 // Next MinVersion: 7 | 5 // Next MinVersion: 7 |
| 6 | 6 |
| 7 module arc.mojom; | 7 module arc.mojom; |
| 8 | 8 |
| 9 import "mojo/common/common_custom_types.mojom"; | 9 import "mojo/common/values.mojom"; |
| 10 | 10 |
| 11 [Extensible] | 11 [Extensible] |
| 12 enum BluetoothAdapterState { | 12 enum BluetoothAdapterState { |
| 13 OFF = 0, | 13 OFF = 0, |
| 14 ON | 14 ON |
| 15 }; | 15 }; |
| 16 | 16 |
| 17 [Extensible] | 17 [Extensible] |
| 18 enum BluetoothDiscoveryState { | 18 enum BluetoothDiscoveryState { |
| 19 STOPPED, | 19 STOPPED, |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 int32 offset, | 448 int32 offset, |
| 449 array<uint8> value) | 449 array<uint8> value) |
| 450 => (BluetoothGattStatus status); | 450 => (BluetoothGattStatus status); |
| 451 | 451 |
| 452 // Bluetooth SDP function | 452 // Bluetooth SDP function |
| 453 [MinVersion=5] OnGetSdpRecords@17(BluetoothStatus status, | 453 [MinVersion=5] OnGetSdpRecords@17(BluetoothStatus status, |
| 454 BluetoothAddress remove_addr, | 454 BluetoothAddress remove_addr, |
| 455 BluetoothUUID target_uuid, | 455 BluetoothUUID target_uuid, |
| 456 array<BluetoothSdpRecord> records); | 456 array<BluetoothSdpRecord> records); |
| 457 }; | 457 }; |
| OLD | NEW |