OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/common/bluetooth/bluetooth_device.h" | 5 #include "content/common/bluetooth/bluetooth_device.h" |
6 | 6 |
7 #include "base/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
8 | 8 |
9 namespace content { | 9 namespace content { |
10 | 10 |
11 BluetoothDevice::BluetoothDevice() | 11 BluetoothDevice::BluetoothDevice() |
12 : instance_id(""), | 12 : instance_id(""), |
13 name(base::string16()), | 13 name(base::string16()), |
| 14 tx_power(device::BluetoothDevice::kUnknownPower), |
| 15 rssi(device::BluetoothDevice::kUnknownPower), |
14 device_class(0), | 16 device_class(0), |
15 vendor_id_source( | 17 vendor_id_source( |
16 device::BluetoothDevice::VendorIDSource::VENDOR_ID_UNKNOWN), | 18 device::BluetoothDevice::VendorIDSource::VENDOR_ID_UNKNOWN), |
17 vendor_id(0), | 19 vendor_id(0), |
18 product_id(0), | 20 product_id(0), |
19 product_version(0), | 21 product_version(0), |
20 paired(false), | 22 paired(false), |
21 uuids() { | 23 uuids() {} |
22 } | |
23 | 24 |
24 BluetoothDevice::BluetoothDevice( | 25 BluetoothDevice::BluetoothDevice( |
25 const std::string& instance_id, | 26 const std::string& instance_id, |
26 const base::string16& name, | 27 const base::string16& name, |
| 28 int tx_power, |
| 29 int rssi, |
27 uint32 device_class, | 30 uint32 device_class, |
28 device::BluetoothDevice::VendorIDSource vendor_id_source, | 31 device::BluetoothDevice::VendorIDSource vendor_id_source, |
29 uint16 vendor_id, | 32 uint16 vendor_id, |
30 uint16 product_id, | 33 uint16 product_id, |
31 uint16 product_version, | 34 uint16 product_version, |
32 bool paired, | 35 bool paired, |
33 const std::vector<std::string>& uuids) | 36 const std::vector<std::string>& uuids) |
34 : instance_id(instance_id), | 37 : instance_id(instance_id), |
35 name(name), | 38 name(name), |
| 39 tx_power(tx_power), |
| 40 rssi(rssi), |
36 device_class(device_class), | 41 device_class(device_class), |
37 vendor_id_source(vendor_id_source), | 42 vendor_id_source(vendor_id_source), |
38 vendor_id(vendor_id), | 43 vendor_id(vendor_id), |
39 product_id(product_id), | 44 product_id(product_id), |
40 product_version(product_version), | 45 product_version(product_version), |
41 paired(paired), | 46 paired(paired), |
42 uuids(uuids) { | 47 uuids(uuids) {} |
43 } | |
44 | 48 |
45 BluetoothDevice::~BluetoothDevice() { | 49 BluetoothDevice::~BluetoothDevice() { |
46 } | 50 } |
47 | 51 |
48 // static | 52 // static |
49 std::vector<std::string> BluetoothDevice::UUIDsFromBluetoothUUIDs( | 53 std::vector<std::string> BluetoothDevice::UUIDsFromBluetoothUUIDs( |
50 const device::BluetoothDevice::UUIDList& uuid_list) { | 54 const device::BluetoothDevice::UUIDList& uuid_list) { |
51 std::vector<std::string> uuids; | 55 std::vector<std::string> uuids; |
52 uuids.reserve(uuid_list.size()); | 56 uuids.reserve(uuid_list.size()); |
53 for (const auto& it : uuid_list) | 57 for (const auto& it : uuid_list) |
54 uuids.push_back(it.canonical_value()); | 58 uuids.push_back(it.canonical_value()); |
55 return uuids; | 59 return uuids; |
56 } | 60 } |
57 | 61 |
58 } // namespace content | 62 } // namespace content |
OLD | NEW |