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

Unified Diff: content/browser/indexed_db/indexed_db_transaction.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_transaction.cc
diff --git a/content/browser/indexed_db/indexed_db_transaction.cc b/content/browser/indexed_db/indexed_db_transaction.cc
index 5882276f577d9a33492fa931c004ce89ea41f4bc..6b0df34a95390efe3b58ae64321cc9bf6db3fff1 100644
--- a/content/browser/indexed_db/indexed_db_transaction.cc
+++ b/content/browser/indexed_db/indexed_db_transaction.cc
@@ -477,7 +477,7 @@ void IndexedDBTransaction::RemovePendingObservers(
const auto& it = std::remove_if(
pending_observers_.begin(), pending_observers_.end(),
[&pending_observer_ids](const std::unique_ptr<IndexedDBObserver>& o) {
- return ContainsValue(pending_observer_ids, o->id());
+ return base::ContainsValue(pending_observer_ids, o->id());
});
if (it != pending_observers_.end())
pending_observers_.erase(it, pending_observers_.end());
« no previous file with comments | « content/browser/indexed_db/indexed_db_observer.h ('k') | content/browser/loader/resource_dispatcher_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698