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

Unified Diff: content/browser/indexed_db/indexed_db_factory_impl.cc

Issue 2228403003: content: 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
Index: content/browser/indexed_db/indexed_db_factory_impl.cc
diff --git a/content/browser/indexed_db/indexed_db_factory_impl.cc b/content/browser/indexed_db/indexed_db_factory_impl.cc
index de072a298bb11926f714b954cfcb5eb4d679cd05..eb112ecb7a7e07c8758e5ad529b1035303f4b0b5 100644
--- a/content/browser/indexed_db/indexed_db_factory_impl.cc
+++ b/content/browser/indexed_db/indexed_db_factory_impl.cc
@@ -252,7 +252,7 @@ void IndexedDBFactoryImpl::DeleteDatabase(
HandleBackingStoreCorruption(origin, error);
return;
}
- if (!ContainsValue(names, name)) {
+ if (!base::ContainsValue(names, name)) {
const int64_t version = 0;
callbacks->OnSuccess(version);
backing_store = NULL;
« no previous file with comments | « content/browser/indexed_db/indexed_db_dispatcher_host.cc ('k') | content/browser/indexed_db/indexed_db_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698