| Index: components/pairing/bluetooth_controller_pairing_controller.cc
|
| diff --git a/components/pairing/bluetooth_controller_pairing_controller.cc b/components/pairing/bluetooth_controller_pairing_controller.cc
|
| index dd2ea5411d553cb9a816ba6be6b9f8b31127708d..8750de39aef95d7bdb4fffcce919df679e5e3c18 100644
|
| --- a/components/pairing/bluetooth_controller_pairing_controller.cc
|
| +++ b/components/pairing/bluetooth_controller_pairing_controller.cc
|
| @@ -72,7 +72,8 @@ void BluetoothControllerPairingController::DeviceFound(
|
| device::BluetoothDevice* device) {
|
| DCHECK_EQ(current_stage_, STAGE_DEVICES_DISCOVERY);
|
| DCHECK(thread_checker_.CalledOnValidThread());
|
| - if (base::StartsWith(device->GetName(), base::ASCIIToUTF16(kDeviceNamePrefix),
|
| + if (base::StartsWith(device->GetNameForDisplay(),
|
| + base::ASCIIToUTF16(kDeviceNamePrefix),
|
| base::CompareCase::INSENSITIVE_ASCII)) {
|
| discovered_devices_.insert(device->GetAddress());
|
| FOR_EACH_OBSERVER(ControllerPairingController::Observer, observers_,
|
|
|