| Index: content/browser/indexed_db/indexed_db_active_blob_registry.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_active_blob_registry.cc b/content/browser/indexed_db/indexed_db_active_blob_registry.cc
|
| index 047619c3acc300d46c4bb814274d99ae6f0b867d..ea2bde2acf9b94471fca1f9ca4b2a1ac9aca9e5a 100644
|
| --- a/content/browser/indexed_db/indexed_db_active_blob_registry.cc
|
| +++ b/content/browser/indexed_db/indexed_db_active_blob_registry.cc
|
| @@ -26,7 +26,7 @@ void IndexedDBActiveBlobRegistry::AddBlobRef(int64_t database_id,
|
| DCHECK(backing_store_->task_runner()->RunsTasksOnCurrentThread());
|
| DCHECK(KeyPrefix::IsValidDatabaseId(database_id));
|
| DCHECK(DatabaseMetaDataKey::IsValidBlobKey(blob_key));
|
| - DCHECK(!ContainsKey(deleted_dbs_, database_id));
|
| + DCHECK(!base::ContainsKey(deleted_dbs_, database_id));
|
| bool need_ref = use_tracker_.empty();
|
| SingleDBMap& single_db_map = use_tracker_[database_id];
|
| SingleDBMap::iterator iter = single_db_map.find(blob_key);
|
|
|