| Index: ash/common/system/tray/system_tray_delegate.h
|
| diff --git a/ash/common/system/tray/system_tray_delegate.h b/ash/common/system/tray/system_tray_delegate.h
|
| index 1c9da5a67c862563281067325fe5b2ebed1c6c06..995f2323e050606691c678de2f97a33145a7af85 100644
|
| --- a/ash/common/system/tray/system_tray_delegate.h
|
| +++ b/ash/common/system/tray/system_tray_delegate.h
|
| @@ -25,6 +25,10 @@ class TimeDelta;
|
| class TimeTicks;
|
| }
|
|
|
| +namespace device {
|
| +enum class BluetoothDeviceType;
|
| +}
|
| +
|
| namespace ash {
|
| struct IMEInfo;
|
| struct IMEPropertyInfo;
|
| @@ -55,6 +59,7 @@ struct ASH_EXPORT NetworkIconInfo {
|
|
|
| struct ASH_EXPORT BluetoothDeviceInfo {
|
| BluetoothDeviceInfo();
|
| + BluetoothDeviceInfo(const BluetoothDeviceInfo& other);
|
| ~BluetoothDeviceInfo();
|
|
|
| std::string address;
|
| @@ -62,6 +67,7 @@ struct ASH_EXPORT BluetoothDeviceInfo {
|
| bool connected;
|
| bool connecting;
|
| bool paired;
|
| + device::BluetoothDeviceType device_type;
|
| };
|
|
|
| using BluetoothDeviceList = std::vector<BluetoothDeviceInfo>;
|
|
|