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

Unified Diff: device/hid/hid_service.cc

Issue 2230083003: device: 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
« no previous file with comments | « device/hid/hid_report_descriptor.cc ('k') | device/hid/hid_service_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/hid/hid_service.cc
diff --git a/device/hid/hid_service.cc b/device/hid/hid_service.cc
index d908fe7d2d09d5018fb943309996a82cbfdee0bc..09b2ab6088541479bd76f5b3a2fe830b16ba70b7 100644
--- a/device/hid/hid_service.cc
+++ b/device/hid/hid_service.cc
@@ -91,7 +91,7 @@ HidService::~HidService() {
void HidService::AddDevice(scoped_refptr<HidDeviceInfo> device_info) {
DCHECK(thread_checker_.CalledOnValidThread());
- if (!ContainsKey(devices_, device_info->device_id())) {
+ if (!base::ContainsKey(devices_, device_info->device_id())) {
devices_[device_info->device_id()] = device_info;
HID_LOG(USER) << "HID device "
« no previous file with comments | « device/hid/hid_report_descriptor.cc ('k') | device/hid/hid_service_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698