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

Unified Diff: device/bluetooth/bluetooth_device_android.cc

Issue 2248913002: bluetooth: Implement RSSI and Tx Power on macOS and Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-refactor-adv-data
Patch Set: Address jyasskin's comments Created 4 years, 4 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: device/bluetooth/bluetooth_device_android.cc
diff --git a/device/bluetooth/bluetooth_device_android.cc b/device/bluetooth/bluetooth_device_android.cc
index df8725a295cd9516514c4256c529850b4e2ddc9d..3bcd2835b51b4462e04878f9cf8688ece8e61019 100644
--- a/device/bluetooth/bluetooth_device_android.cc
+++ b/device/bluetooth/bluetooth_device_android.cc
@@ -127,16 +127,6 @@ bool BluetoothDeviceAndroid::IsConnecting() const {
return false;
}
-base::Optional<int8_t> BluetoothDeviceAndroid::GetInquiryRSSI() const {
- NOTIMPLEMENTED();
- return base::nullopt;
-}
-
-base::Optional<int8_t> BluetoothDeviceAndroid::GetInquiryTxPower() const {
- NOTIMPLEMENTED();
- return base::nullopt;
-}
-
bool BluetoothDeviceAndroid::ExpectingPinCode() const {
NOTIMPLEMENTED();
return false;

Powered by Google App Engine
This is Rietveld 408576698