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

Unified Diff: device/bluetooth/bluetooth_device_win.cc

Issue 246603008: Expose device RSSI and Tx power via the chrome.bluetooth API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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_win.cc
diff --git a/device/bluetooth/bluetooth_device_win.cc b/device/bluetooth/bluetooth_device_win.cc
index 81a9386ec3db946977a0b4f157c48a388aacdeff..002e20672d94e01944521a72bdf6cf7c245e41a0 100644
--- a/device/bluetooth/bluetooth_device_win.cc
+++ b/device/bluetooth/bluetooth_device_win.cc
@@ -111,6 +111,11 @@ uint16 BluetoothDeviceWin::GetDeviceID() const {
return 0;
}
+int BluetoothDeviceWin::GetRSSI() const {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
bool BluetoothDeviceWin::IsPaired() const {
return paired_;
}

Powered by Google App Engine
This is Rietveld 408576698