Index: content/browser/bluetooth/bluetooth_device_chooser_controller.cc |
diff --git a/content/browser/bluetooth/bluetooth_device_chooser_controller.cc b/content/browser/bluetooth/bluetooth_device_chooser_controller.cc |
index b2d8792f0c4a5fd5ddccd1b9594b719793ec41df..5b93673bccbac573eb42f1536acca09ff245c30b 100644 |
--- a/content/browser/bluetooth/bluetooth_device_chooser_controller.cc |
+++ b/content/browser/bluetooth/bluetooth_device_chooser_controller.cc |
@@ -110,7 +110,7 @@ bool MatchesFilter(const device::BluetoothDevice& device, |
const std::unordered_set<BluetoothUUID, device::BluetoothUUIDHash> |
device_uuids(device_uuid_list.begin(), device_uuid_list.end()); |
for (const base::Optional<BluetoothUUID>& service : filter->services) { |
- if (!ContainsKey(device_uuids, service.value())) { |
+ if (!base::ContainsKey(device_uuids, service.value())) { |
return false; |
} |
} |