OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h" | 5 #include "chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h" |
6 | 6 |
7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
8 #include "base/values.h" | 8 #include "base/values.h" |
9 #include "chrome/common/extensions/api/bluetooth.h" | 9 #include "chrome/common/extensions/api/bluetooth.h" |
10 #include "device/bluetooth/bluetooth_adapter.h" | 10 #include "device/bluetooth/bluetooth_adapter.h" |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
105 out->vendor_id.reset(new int(device.GetVendorID())); | 105 out->vendor_id.reset(new int(device.GetVendorID())); |
106 out->product_id.reset(new int(device.GetProductID())); | 106 out->product_id.reset(new int(device.GetProductID())); |
107 out->device_id.reset(new int(device.GetDeviceID())); | 107 out->device_id.reset(new int(device.GetDeviceID())); |
108 } | 108 } |
109 | 109 |
110 ConvertDeviceTypeToApi(device.GetDeviceType(), &(out->type)); | 110 ConvertDeviceTypeToApi(device.GetDeviceType(), &(out->type)); |
111 | 111 |
112 out->paired.reset(new bool(device.IsPaired())); | 112 out->paired.reset(new bool(device.IsPaired())); |
113 out->connected.reset(new bool(device.IsConnected())); | 113 out->connected.reset(new bool(device.IsConnected())); |
114 | 114 |
115 if (*out->connected) { | |
116 int rssi = device.GetRSSI(); | |
keybuk
2014/04/27 09:08:44
RSSI can also be provided when not connected - e.g
Ilya Sherman
2014/04/29 00:51:17
I extended the IDL documentation to specify this,
| |
117 if (rssi != BluetoothDevice::kUnknownPower) | |
118 out->rssi.reset(new int(rssi)); | |
119 int current_transmit_power = device.GetCurrentHostTransmitPower(); | |
120 if (current_transmit_power != BluetoothDevice::kUnknownPower) | |
121 out->current_host_transmit_power.reset(new int(current_transmit_power)); | |
122 int maximum_transmit_power = device.GetMaximumHostTransmitPower(); | |
123 if (maximum_transmit_power != BluetoothDevice::kUnknownPower) | |
124 out->maximum_host_transmit_power.reset(new int(maximum_transmit_power)); | |
keybuk
2014/04/27 09:08:44
These on the other hand only make sense when conne
Ilya Sherman
2014/04/29 00:51:17
Ack.
| |
125 } | |
126 | |
115 std::vector<std::string>* string_uuids = new std::vector<std::string>(); | 127 std::vector<std::string>* string_uuids = new std::vector<std::string>(); |
116 const device::BluetoothDevice::UUIDList& uuids = device.GetUUIDs(); | 128 const device::BluetoothDevice::UUIDList& uuids = device.GetUUIDs(); |
117 for (device::BluetoothDevice::UUIDList::const_iterator iter = uuids.begin(); | 129 for (device::BluetoothDevice::UUIDList::const_iterator iter = uuids.begin(); |
118 iter != uuids.end(); ++iter) | 130 iter != uuids.end(); ++iter) |
119 string_uuids->push_back(iter->canonical_value()); | 131 string_uuids->push_back(iter->canonical_value()); |
120 out->uuids.reset(string_uuids); | 132 out->uuids.reset(string_uuids); |
121 } | 133 } |
122 | 134 |
123 void PopulateAdapterState(const device::BluetoothAdapter& adapter, | 135 void PopulateAdapterState(const device::BluetoothAdapter& adapter, |
124 AdapterState* out) { | 136 AdapterState* out) { |
125 out->discovering = adapter.IsDiscovering(); | 137 out->discovering = adapter.IsDiscovering(); |
126 out->available = adapter.IsPresent(); | 138 out->available = adapter.IsPresent(); |
127 out->powered = adapter.IsPowered(); | 139 out->powered = adapter.IsPowered(); |
128 out->name = adapter.GetName(); | 140 out->name = adapter.GetName(); |
129 out->address = adapter.GetAddress(); | 141 out->address = adapter.GetAddress(); |
130 } | 142 } |
131 | 143 |
132 } // namespace bluetooth | 144 } // namespace bluetooth |
133 } // namespace api | 145 } // namespace api |
134 } // namespace extensions | 146 } // namespace extensions |
OLD | NEW |