| Index: components/arc/bluetooth/arc_bluetooth_bridge.cc
|
| diff --git a/components/arc/bluetooth/arc_bluetooth_bridge.cc b/components/arc/bluetooth/arc_bluetooth_bridge.cc
|
| index c99351ca7c12572ca20c2de756e4fbf2b3fb1ed0..d61d26f96d5ea195df162f65af9adbdf20ce2d91 100644
|
| --- a/components/arc/bluetooth/arc_bluetooth_bridge.cc
|
| +++ b/components/arc/bluetooth/arc_bluetooth_bridge.cc
|
| @@ -1560,7 +1560,7 @@ ArcBluetoothBridge::GetAdvertisingData(BluetoothDevice* device) const {
|
| advertising_data.push_back(std::move(local_name));
|
|
|
| // ServiceUuid
|
| - BluetoothDevice::UUIDList uuid_list = device->GetServiceDataUUIDs();
|
| + BluetoothDevice::UUIDList uuid_list = device->GetUUIDs();
|
| if (uuid_list.size() > 0) {
|
| mojom::BluetoothAdvertisingDataPtr service_uuids_16 =
|
| mojom::BluetoothAdvertisingData::New();
|
| @@ -1573,7 +1573,7 @@ ArcBluetoothBridge::GetAdvertisingData(BluetoothDevice* device) const {
|
| }
|
|
|
| // Service data
|
| - for (auto& uuid : uuid_list) {
|
| + for (auto& uuid : device->GetServiceDataUUIDs()) {
|
| base::BinaryValue* data = device->GetServiceData(uuid);
|
| if (data->GetSize() == 0)
|
| continue;
|
|
|