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

Unified Diff: chrome/browser/extensions/blacklist.cc

Issue 2230203002: chrome: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed accidental components/ change 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: chrome/browser/extensions/blacklist.cc
diff --git a/chrome/browser/extensions/blacklist.cc b/chrome/browser/extensions/blacklist.cc
index ece8cb9cf8f05ccb8c82c40810706054957a5599..151715663833d5bb1b1829ac10be323b8fd6e272 100644
--- a/chrome/browser/extensions/blacklist.cc
+++ b/chrome/browser/extensions/blacklist.cc
@@ -304,7 +304,7 @@ void Blacklist::OnBlacklistStateReceived(const std::string& id,
for (std::vector<std::string>::const_iterator ids_it = ids.begin();
ids_it != ids.end();
++ids_it) {
- if (!ContainsKey(blacklist_state_cache_, *ids_it)) {
+ if (!base::ContainsKey(blacklist_state_cache_, *ids_it)) {
have_all_in_cache = false;
break;
}
« no previous file with comments | « chrome/browser/extensions/api/tabs/tabs_api_unittest.cc ('k') | chrome/browser/extensions/blacklist_state_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698