| Index: device/bluetooth/bluetooth_task_manager_win.h
|
| diff --git a/device/bluetooth/bluetooth_task_manager_win.h b/device/bluetooth/bluetooth_task_manager_win.h
|
| index 2c787d66ec4635fabccd5a0a33e20459406764ba..991e95c34a94b9ec7bc7c884881ab2a3a819416b 100644
|
| --- a/device/bluetooth/bluetooth_task_manager_win.h
|
| +++ b/device/bluetooth/bluetooth_task_manager_win.h
|
| @@ -35,18 +35,24 @@ class BluetoothTaskManagerWin
|
| : public base::RefCountedThreadSafe<BluetoothTaskManagerWin> {
|
| public:
|
| struct AdapterState {
|
| + AdapterState();
|
| + ~AdapterState();
|
| std::string name;
|
| std::string address;
|
| bool powered;
|
| };
|
|
|
| struct ServiceRecordState {
|
| + ServiceRecordState();
|
| + ~ServiceRecordState();
|
| std::string name;
|
| std::string address;
|
| std::vector<uint8> sdp_bytes;
|
| };
|
|
|
| struct DeviceState {
|
| + DeviceState();
|
| + ~DeviceState();
|
| std::string name;
|
| std::string address;
|
| uint32 bluetooth_class;
|
|
|