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

Unified Diff: components/storage_monitor/storage_monitor.cc

Issue 2231753002: components: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more call site 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: components/storage_monitor/storage_monitor.cc
diff --git a/components/storage_monitor/storage_monitor.cc b/components/storage_monitor/storage_monitor.cc
index 6f2b23ccaceb3c50c723479236b17435acab4c65..beb45fd2c332c40ddddb48082def4dd23d4006d9 100644
--- a/components/storage_monitor/storage_monitor.cc
+++ b/components/storage_monitor/storage_monitor.cc
@@ -162,7 +162,7 @@ void StorageMonitor::MarkInitialized() {
void StorageMonitor::ProcessAttach(const StorageInfo& info) {
{
base::AutoLock lock(storage_lock_);
- if (ContainsKey(storage_map_, info.device_id())) {
+ if (base::ContainsKey(storage_map_, info.device_id())) {
// This can happen if our unique id scheme fails. Ignore the incoming
// non-unique attachment.
return;
« no previous file with comments | « components/storage_monitor/portable_device_watcher_win.cc ('k') | components/storage_monitor/storage_monitor_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698