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

Unified Diff: chrome/browser/ui/bluetooth/chrome_extension_bluetooth_chooser.cc

Issue 2245603003: Add signal strength indicator icon to WebBluetooth chooser on non-Mac desktops (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address more 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: chrome/browser/ui/bluetooth/chrome_extension_bluetooth_chooser.cc
diff --git a/chrome/browser/ui/bluetooth/chrome_extension_bluetooth_chooser.cc b/chrome/browser/ui/bluetooth/chrome_extension_bluetooth_chooser.cc
index 36ee5f14809dc83c5e3c321f10ed9071174d9e81..044006e369a098b29c314a74fecd9abfd5cdd780 100644
--- a/chrome/browser/ui/bluetooth/chrome_extension_bluetooth_chooser.cc
+++ b/chrome/browser/ui/bluetooth/chrome_extension_bluetooth_chooser.cc
@@ -39,10 +39,10 @@ void ChromeExtensionBluetoothChooser::AddOrUpdateDevice(
const base::string16& device_name,
bool is_gatt_connected,
bool is_paired,
- const int8_t* rssi) {
+ int signal_strength_level) {
bluetooth_chooser_controller_->AddOrUpdateDevice(
device_id, should_update_name, device_name, is_gatt_connected, is_paired,
- rssi);
+ signal_strength_level);
}
void ChromeExtensionBluetoothChooser::RemoveDevice(
« no previous file with comments | « chrome/browser/ui/bluetooth/chrome_extension_bluetooth_chooser.h ('k') | chrome/browser/ui/views/chooser_content_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698