| Index: components/arc/bluetooth/bluetooth_struct_traits.h
|
| diff --git a/components/arc/bluetooth/bluetooth_struct_traits.h b/components/arc/bluetooth/bluetooth_struct_traits.h
|
| index 26ca434aefc22ea0e659a2b698d334c50879e88a..2290d7ad930b8375388f4f9984155121a271aade 100644
|
| --- a/components/arc/bluetooth/bluetooth_struct_traits.h
|
| +++ b/components/arc/bluetooth/bluetooth_struct_traits.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef COMPONENTS_ARC_BLUETOOTH_BLUETOOTH_STRUCT_TRAITS_H_
|
| #define COMPONENTS_ARC_BLUETOOTH_BLUETOOTH_STRUCT_TRAITS_H_
|
|
|
| +#include <memory>
|
| +#include <vector>
|
| +
|
| #include "components/arc/common/bluetooth.mojom.h"
|
| #include "device/bluetooth/bluetooth_advertisement.h"
|
| #include "device/bluetooth/bluetooth_common.h"
|
| @@ -122,10 +125,10 @@ struct StructTraits<arc::mojom::BluetoothAdvertisementDataView,
|
| return false;
|
| }
|
|
|
| - static mojo::Array<arc::mojom::BluetoothAdvertisingDataPtr> data(
|
| + static std::vector<arc::mojom::BluetoothAdvertisingDataPtr> data(
|
| std::unique_ptr<device::BluetoothAdvertisement::Data>& input) {
|
| NOTREACHED();
|
| - return mojo::Array<arc::mojom::BluetoothAdvertisingDataPtr>();
|
| + return std::vector<arc::mojom::BluetoothAdvertisingDataPtr>();
|
| }
|
| };
|
|
|
|
|