We started redesigning GpuMemoryBuffer interface to handle multiple buffers [0].
[chromium-blink-merge.git] / content / common / bluetooth / bluetooth_device.h
blob3e13c5de0bd9db06bb8e16a2c0b0ab83b578c22d
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_COMMON_BLUETOOTH_BLUETOOTH_DEVICE_H_
6 #define CONTENT_COMMON_BLUETOOTH_BLUETOOTH_DEVICE_H_
8 #include <string>
10 #include "base/basictypes.h"
11 #include "base/strings/string16.h"
12 #include "content/common/content_export.h"
13 #include "device/bluetooth/bluetooth_device.h"
15 namespace content {
17 // Data sent over IPC representing a Bluetooth device, corresponding to
18 // blink::WebBluetoothDevice.
19 struct CONTENT_EXPORT BluetoothDevice {
20 BluetoothDevice();
21 BluetoothDevice(const std::string& instance_id,
22 const base::string16& name,
23 uint32 device_class,
24 device::BluetoothDevice::VendorIDSource vendor_id_source,
25 uint16 vendor_id,
26 uint16 product_id,
27 uint16 product_version,
28 bool paired,
29 bool connected,
30 const std::vector<std::string>& uuids);
31 ~BluetoothDevice();
33 static std::vector<std::string> UUIDsFromBluetoothUUIDs(
34 const device::BluetoothDevice::UUIDList& uuid_list);
36 std::string instance_id;
37 base::string16 name;
38 uint32 device_class;
39 device::BluetoothDevice::VendorIDSource vendor_id_source;
40 uint16 vendor_id;
41 uint16 product_id;
42 uint16 product_version;
43 bool paired;
44 bool connected;
45 std::vector<std::string> uuids; // 128bit UUIDs with dashes. 36 chars.
48 } // namespace content
50 #endif // CONTENT_COMMON_BLUETOOTH_BLUETOOTH_DEVICE_H_