Index: device/bluetooth/bluetooth_device_chromeos.cc |
diff --git a/device/bluetooth/bluetooth_device_chromeos.cc b/device/bluetooth/bluetooth_device_chromeos.cc |
index b5f73862fce8a07d4bbc35f7323a976539f4e89b..e894136eff28a1f23068886133a1370e724d22a8 100644 |
--- a/device/bluetooth/bluetooth_device_chromeos.cc |
+++ b/device/bluetooth/bluetooth_device_chromeos.cc |
@@ -212,6 +212,21 @@ uint16 BluetoothDeviceChromeOS::GetDeviceID() const { |
return device_id; |
} |
+int BluetoothDeviceChromeOS::GetRSSI() const { |
+ NOTIMPLEMENTED(); |
+ return kUnknownPower; |
+} |
+ |
+int BluetoothDeviceChromeOS::GetCurrentHostTransmitPower() const { |
+ NOTIMPLEMENTED(); |
+ return kUnknownPower; |
+} |
+ |
+int BluetoothDeviceChromeOS::GetMaximumHostTransmitPower() const { |
+ NOTIMPLEMENTED(); |
+ return kUnknownPower; |
+} |
+ |
bool BluetoothDeviceChromeOS::IsPaired() const { |
BluetoothDeviceClient::Properties* properties = |
DBusThreadManager::Get()->GetBluetoothDeviceClient()-> |