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

Unified Diff: device/bluetooth/bluetooth_device.h

Issue 1464443002: bluetooth: android: Add BluetoothDevice::ConnectErrorCode enums (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: II Created 5 years, 1 month 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: device/bluetooth/bluetooth_device.h
diff --git a/device/bluetooth/bluetooth_device.h b/device/bluetooth/bluetooth_device.h
index 809417dbee2e6cc4f751a55dcd77ae3ebfdcc897..b5a9da92c55adc0d6e6fd3d18e88091ac3ba104e 100644
--- a/device/bluetooth/bluetooth_device.h
+++ b/device/bluetooth/bluetooth_device.h
@@ -96,7 +96,14 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothDevice {
ERROR_AUTH_CANCELED,
ERROR_AUTH_REJECTED,
ERROR_AUTH_TIMEOUT,
- ERROR_UNSUPPORTED_DEVICE
+ ERROR_UNSUPPORTED_DEVICE,
+ ERROR_ATTRIBUTE_LENGTH_INVALID,
+ ERROR_CONNECTION_CONGESTED,
+ ERROR_INSUFFICIENT_ENCRYPTION,
+ ERROR_OFFSET_INVALID,
+ ERROR_READ_FAILED,
+ ERROR_REQUEST_NOT_SUPPORTED,
+ ERROR_WRITE_FAILED
Kai Jiang 2015/11/25 14:17:13 done with sorting alphabetically according to prev
};
typedef std::vector<BluetoothUUID> UUIDList;

Powered by Google App Engine
This is Rietveld 408576698