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

Unified Diff: device/usb/usb_device_handle_usbfs.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/usb/usb_device_handle_impl.cc ('k') | device/usb/usb_service_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/usb/usb_device_handle_usbfs.cc
diff --git a/device/usb/usb_device_handle_usbfs.cc b/device/usb/usb_device_handle_usbfs.cc
index fba043425830e0e3d976862dca16d6491c5bcefb..4ac0d10d080f254d953ae5bea798c25e21fa8139 100644
--- a/device/usb/usb_device_handle_usbfs.cc
+++ b/device/usb/usb_device_handle_usbfs.cc
@@ -369,7 +369,7 @@ void UsbDeviceHandleUsbfs::ClaimInterface(int interface_number,
return;
}
- if (ContainsKey(interfaces_, interface_number)) {
+ if (base::ContainsKey(interfaces_, interface_number)) {
USB_LOG(DEBUG) << "Interface " << interface_number << " already claimed.";
task_runner_->PostTask(FROM_HERE, base::Bind(callback, false));
return;
« no previous file with comments | « device/usb/usb_device_handle_impl.cc ('k') | device/usb/usb_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698