Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Unified Diff: content/browser/bluetooth/bluetooth_device_chooser_controller.cc

Issue 2228403003: content: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}
}
« no previous file with comments | « content/browser/bluetooth/bluetooth_allowed_devices_map.cc ('k') | content/browser/bluetooth/web_bluetooth_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698