summaryrefslogtreecommitdiffstats
path: root/chromium/device/bluetooth/bluetooth_task_manager_win.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/device/bluetooth/bluetooth_task_manager_win.h')
-rw-r--r--chromium/device/bluetooth/bluetooth_task_manager_win.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chromium/device/bluetooth/bluetooth_task_manager_win.h b/chromium/device/bluetooth/bluetooth_task_manager_win.h
index 2c787d66ec4..991e95c34a9 100644
--- a/chromium/device/bluetooth/bluetooth_task_manager_win.h
+++ b/chromium/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;