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

Unified Diff: content/common/bluetooth/bluetooth_device.h

Issue 1427653003: bluetooth: Implement TxPower and RSSI of BluetoothAdvertisementData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@my-origin
Patch Set: Fix webexposed test Created 5 years, 2 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: content/common/bluetooth/bluetooth_device.h
diff --git a/content/common/bluetooth/bluetooth_device.h b/content/common/bluetooth/bluetooth_device.h
index 987477626e251a690c858f310997b2b5ecf25ad8..8423947abac12de44843ef05b802502a04d5368b 100644
--- a/content/common/bluetooth/bluetooth_device.h
+++ b/content/common/bluetooth/bluetooth_device.h
@@ -20,6 +20,8 @@ struct CONTENT_EXPORT BluetoothDevice {
BluetoothDevice();
BluetoothDevice(const std::string& instance_id,
const base::string16& name,
+ int tx_power,
+ int rssi,
uint32 device_class,
device::BluetoothDevice::VendorIDSource vendor_id_source,
uint16 vendor_id,
@@ -34,6 +36,8 @@ struct CONTENT_EXPORT BluetoothDevice {
std::string instance_id;
base::string16 name;
+ int tx_power;
+ int rssi;
uint32 device_class;
device::BluetoothDevice::VendorIDSource vendor_id_source;
uint16 vendor_id;

Powered by Google App Engine
This is Rietveld 408576698