Index: content/common/bluetooth/bluetooth_device.cc |
diff --git a/content/common/bluetooth/bluetooth_device.cc b/content/common/bluetooth/bluetooth_device.cc |
index baf930cf8c9ea8c041c78132cfb04d11ab7e2b2f..ff884b8d40387eb23e9701612c7535c16d6c5f10 100644 |
--- a/content/common/bluetooth/bluetooth_device.cc |
+++ b/content/common/bluetooth/bluetooth_device.cc |
@@ -11,6 +11,8 @@ namespace content { |
BluetoothDevice::BluetoothDevice() |
: id(""), |
name(base::string16()), |
+ tx_power(device::BluetoothDevice::kUnknownPower), |
+ rssi(device::BluetoothDevice::kUnknownPower), |
device_class(0), |
vendor_id_source( |
device::BluetoothDevice::VendorIDSource::VENDOR_ID_UNKNOWN), |
@@ -23,6 +25,8 @@ BluetoothDevice::BluetoothDevice() |
BluetoothDevice::BluetoothDevice( |
const std::string& id, |
const base::string16& name, |
+ int tx_power, |
+ int rssi, |
uint32 device_class, |
device::BluetoothDevice::VendorIDSource vendor_id_source, |
uint16 vendor_id, |
@@ -32,6 +36,8 @@ BluetoothDevice::BluetoothDevice( |
const std::vector<std::string>& uuids) |
: id(id), |
name(name), |
+ tx_power(tx_power), |
+ rssi(rssi), |
device_class(device_class), |
vendor_id_source(vendor_id_source), |
vendor_id(vendor_id), |