Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(106)

Unified Diff: chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h

Issue 1464443002: bluetooth: android: Add BluetoothDevice::ConnectErrorCode enums (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: V Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h
diff --git a/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h b/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h
index 70b7f27818178ecfd9d42caf21a514583b54279a..5658362f60182161c4b06d04dc01aa0ebadb7718 100644
--- a/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h
+++ b/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h
@@ -60,21 +60,26 @@ class BluetoothLowEnergyEventRouter
kStatusSuccess = 0,
kStatusErrorAlreadyConnected,
kStatusErrorAlreadyNotifying,
+ kStatusErrorAttributeLengthInvalid,
kStatusErrorAuthenticationFailed,
kStatusErrorCanceled,
+ kStatusErrorConnectionCongested,
kStatusErrorFailed,
kStatusErrorGattNotSupported,
kStatusErrorHigherSecurity,
kStatusErrorInProgress,
kStatusErrorInsufficientAuthorization,
+ kStatusErrorInsufficientEncryption,
+ kStatusErrorInvalidArguments,
kStatusErrorInvalidLength,
kStatusErrorNotConnected,
kStatusErrorNotFound,
kStatusErrorNotNotifying,
+ kStatusErrorOffsetInvalid,
kStatusErrorPermissionDenied,
+ kStatusErrorRequestNotSupported,
kStatusErrorTimeout,
kStatusErrorUnsupportedDevice,
- kStatusErrorInvalidArguments,
};
// Error callback is used by asynchronous methods to report failures.

Powered by Google App Engine
This is Rietveld 408576698