| 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 b843354e5a755f426a735071741549b1c0781aec..3d8cb6a85dc9ee3135ff6b8f8ebc4d8dfbfd292e 100644
 | 
| --- a/components/pairing/bluetooth_controller_pairing_controller.cc
 | 
| +++ b/components/pairing/bluetooth_controller_pairing_controller.cc
 | 
| @@ -71,7 +71,7 @@ void BluetoothControllerPairingController::DeviceFound(
 | 
|    DCHECK_EQ(current_stage_, STAGE_DEVICES_DISCOVERY);
 | 
|    DCHECK(thread_checker_.CalledOnValidThread());
 | 
|    if (base::StartsWith(device->GetName(), base::ASCIIToUTF16(kDeviceNamePrefix),
 | 
| -                       false)) {
 | 
| +                       base::CompareCase::INSENSITIVE_ASCII)) {
 | 
|      discovered_devices_.insert(device->GetAddress());
 | 
|      FOR_EACH_OBSERVER(ControllerPairingController::Observer, observers_,
 | 
|                        DiscoveredDevicesListChanged());
 | 
| 
 |