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

Unified Diff: device/bluetooth/bluetooth_low_energy_device_mac.mm

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_low_energy_device_mac.mm
diff --git a/device/bluetooth/bluetooth_low_energy_device_mac.mm b/device/bluetooth/bluetooth_low_energy_device_mac.mm
index 2dfaeef16d010f9401021a97d34097b813be0348..6e279ebf2edd5919a088e6d8fc11673c21734515 100644
--- a/device/bluetooth/bluetooth_low_energy_device_mac.mm
+++ b/device/bluetooth/bluetooth_low_energy_device_mac.mm
@@ -103,16 +103,6 @@ bool BluetoothLowEnergyDeviceMac::IsConnecting() const {
return ([peripheral_ state] == CBPeripheralStateConnecting);
}
-base::Optional<int8_t> BluetoothLowEnergyDeviceMac::GetInquiryRSSI() const {
- NOTIMPLEMENTED();
- return base::nullopt;
-}
-
-base::Optional<int8_t> BluetoothLowEnergyDeviceMac::GetInquiryTxPower() const {
- NOTIMPLEMENTED();
- return base::nullopt;
-}
-
bool BluetoothLowEnergyDeviceMac::ExpectingPinCode() const {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698