| 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;
|
|
|