| Index: device/bluetooth/bluetooth_service_record_win.cc
|
| diff --git a/device/bluetooth/bluetooth_service_record_win.cc b/device/bluetooth/bluetooth_service_record_win.cc
|
| index e0ba750f2972e5e347611a5df0d1e6009842d2e1..430978f0e35f54f49b8ee8e3b8b29e8437b9a7b8 100644
|
| --- a/device/bluetooth/bluetooth_service_record_win.cc
|
| +++ b/device/bluetooth/bluetooth_service_record_win.cc
|
| @@ -143,8 +143,10 @@ BluetoothServiceRecordWin::BluetoothServiceRecordWin(
|
| blob_size,
|
| kUuidId,
|
| &uuid_data)) {
|
| - ExtractUuid(uuid_data, &uuid_);
|
| + std::string uuid_str;
|
| + ExtractUuid(uuid_data, &uuid_str);
|
| + uuid_ = BluetoothUUID(uuid_str);
|
| }
|
| }
|
|
|
| -} // namespace device
|
| +} // namespace device
|
|
|