| Index: device/bluetooth/bluetooth_device_android.cc
|
| diff --git a/device/bluetooth/bluetooth_device_android.cc b/device/bluetooth/bluetooth_device_android.cc
|
| index 8e5b2ec261b06a9fd32393c37fa0a5df47327094..256cebd21ade7c91d54a710e7f90ce404051138e 100644
|
| --- a/device/bluetooth/bluetooth_device_android.cc
|
| +++ b/device/bluetooth/bluetooth_device_android.cc
|
| @@ -140,14 +140,14 @@ BluetoothDevice::UUIDList BluetoothDeviceAndroid::GetUUIDs() const {
|
| return uuids;
|
| }
|
|
|
| -int16_t BluetoothDeviceAndroid::GetInquiryRSSI() const {
|
| +int8_t BluetoothDeviceAndroid::GetInquiryRSSI() const {
|
| NOTIMPLEMENTED();
|
| - return kUnknownPower;
|
| + return kUnknownRSSI;
|
| }
|
|
|
| -int16_t BluetoothDeviceAndroid::GetInquiryTxPower() const {
|
| +int8_t BluetoothDeviceAndroid::GetInquiryTxPower() const {
|
| NOTIMPLEMENTED();
|
| - return kUnknownPower;
|
| + return kUnknownTxPower;
|
| }
|
|
|
| bool BluetoothDeviceAndroid::ExpectingPinCode() const {
|
|
|