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

Unified Diff: extensions/common/api/bluetooth_private.idl

Issue 1464443002: bluetooth: android: Add BluetoothDevice::ConnectErrorCode enums (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: VI 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: extensions/common/api/bluetooth_private.idl
diff --git a/extensions/common/api/bluetooth_private.idl b/extensions/common/api/bluetooth_private.idl
index af6e893aff0b7eba2a45e20bb4859e66e096ffcd..45ffd72a057f48497c1bb24b967fceabac463cb3 100644
--- a/extensions/common/api/bluetooth_private.idl
+++ b/extensions/common/api/bluetooth_private.idl
@@ -45,16 +45,23 @@ namespace bluetoothPrivate {
// Results for connect(). See function declaration for details.
enum ConnectResultType {
- success,
- unknownError,
- inProgress,
alreadyConnected,
- failed,
- authFailed,
+ attributeLengthInvalid,
authCanceled,
+ authFailed,
authRejected,
authTimeout,
- unsupportedDevice
+ connectionCongested,
+ failed,
+ inProgress,
+ insufficientEncryption,
+ offsetInvalid,
+ readNotPermitted,
+ requestNotSupported,
+ success,
+ unknownError,
+ unsupportedDevice,
+ writeNotPermitted
};
// Valid pairing responses.

Powered by Google App Engine
This is Rietveld 408576698