| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 module blink.mojom; |
| 6 |
| 7 enum WebBluetoothError { |
| 8 SUCCESS, |
| 9 // InvalidModificationError: |
| 10 GATT_INVALID_ATTRIBUTE_LENGTH, |
| 11 // InvalidStateError: |
| 12 SERVICE_NO_LONGER_EXISTS, |
| 13 CHARACTERISTIC_NO_LONGER_EXISTS, |
| 14 // NetworkError: |
| 15 DEVICE_NO_LONGER_IN_RANGE, |
| 16 GATT_NOT_PAIRED, |
| 17 GATT_OPERATION_IN_PROGRESS, |
| 18 // NotSupportedError: |
| 19 GATT_UNKNOWN_ERROR, |
| 20 GATT_UNKNOWN_FAILURE, |
| 21 GATT_NOT_PERMITTED, |
| 22 GATT_NOT_SUPPORTED, |
| 23 GATT_UNTRANSLATED_ERROR_CODE, |
| 24 // SecurityError: |
| 25 GATT_NOT_AUTHORIZED, |
| 26 BLACKLISTED_WRITE |
| 27 }; |
| OLD | NEW |