| Index: device/bluetooth/bluetooth_remote_gatt_service_android.cc
|
| diff --git a/device/bluetooth/bluetooth_remote_gatt_service_android.cc b/device/bluetooth/bluetooth_remote_gatt_service_android.cc
|
| index 490369c80eb00d39227c997b72d82a87caabc6e7..935dfaa540099bfb1d3a7182f31c0a2bf1c5b5eb 100644
|
| --- a/device/bluetooth/bluetooth_remote_gatt_service_android.cc
|
| +++ b/device/bluetooth/bluetooth_remote_gatt_service_android.cc
|
| @@ -169,13 +169,13 @@ bool BluetoothRemoteGattServiceAndroid::AddIncludedService(
|
| void BluetoothRemoteGattServiceAndroid::Register(
|
| const base::Closure& callback,
|
| const ErrorCallback& error_callback) {
|
| - error_callback.Run();
|
| + error_callback.Run(GATT_ERROR_NOT_SUPPORTED);
|
| }
|
|
|
| void BluetoothRemoteGattServiceAndroid::Unregister(
|
| const base::Closure& callback,
|
| const ErrorCallback& error_callback) {
|
| - error_callback.Run();
|
| + error_callback.Run(GATT_ERROR_NOT_SUPPORTED);
|
| }
|
|
|
| void BluetoothRemoteGattServiceAndroid::CreateGattRemoteCharacteristic(
|
|
|