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

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

Issue 885723002: bluetooth: Provide more device attributes in requestDevice reply. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bt-0
Patch Set: uuids initializer fixed. Created 5 years, 11 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
« no previous file with comments | « content/common/bluetooth/bluetooth_device.h ('k') | content/common/bluetooth/bluetooth_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/bluetooth/bluetooth_device.cc
diff --git a/content/common/bluetooth/bluetooth_device.cc b/content/common/bluetooth/bluetooth_device.cc
new file mode 100644
index 0000000000000000000000000000000000000000..27ac2f5cd7373183228049e85774734740d4a46b
--- /dev/null
+++ b/content/common/bluetooth/bluetooth_device.cc
@@ -0,0 +1,61 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/common/bluetooth/bluetooth_device.h"
+
+#include "base/strings/string_util.h"
+
+namespace content {
+
+BluetoothDevice::BluetoothDevice()
+ : instance_id(""),
+ name(base::string16()),
+ device_class(0),
+ vendor_id_source(
+ device::BluetoothDevice::VendorIDSource::VENDOR_ID_UNKNOWN),
+ vendor_id(0),
+ product_id(0),
+ product_version(0),
+ paired(false),
+ connected(false),
+ uuids() {
+}
+
+BluetoothDevice::BluetoothDevice(
+ const std::string& instance_id,
+ const base::string16& name,
+ uint32 device_class,
+ device::BluetoothDevice::VendorIDSource vendor_id_source,
+ uint16 vendor_id,
+ uint16 product_id,
+ uint16 product_version,
+ bool paired,
+ bool connected,
+ const std::vector<std::string>& uuids)
+ : instance_id(instance_id),
+ name(name),
+ device_class(device_class),
+ vendor_id_source(vendor_id_source),
+ vendor_id(vendor_id),
+ product_id(product_id),
+ product_version(product_version),
+ paired(paired),
+ connected(connected),
+ uuids(uuids) {
+}
+
+BluetoothDevice::~BluetoothDevice() {
+}
+
+// static
+std::vector<std::string> BluetoothDevice::UUIDsFromBluetoothUUIDs(
+ const device::BluetoothDevice::UUIDList& uuid_list) {
+ std::vector<std::string> uuids;
+ uuids.reserve(uuid_list.size());
+ for (const auto& it : uuid_list)
+ uuids.push_back(it.canonical_value());
+ return uuids;
+}
+
+} // namespace content
« no previous file with comments | « content/common/bluetooth/bluetooth_device.h ('k') | content/common/bluetooth/bluetooth_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698