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

Unified Diff: chrome/browser/extensions/api/identity/identity_mint_queue.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/api/identity/identity_mint_queue.cc
diff --git a/chrome/browser/extensions/api/identity/identity_mint_queue.cc b/chrome/browser/extensions/api/identity/identity_mint_queue.cc
index ed8e89961fb1f8f8d6b8db6fee5e13d886f43358..74825eb173826734384580a78fea41f7144a68da 100644
--- a/chrome/browser/extensions/api/identity/identity_mint_queue.cc
+++ b/chrome/browser/extensions/api/identity/identity_mint_queue.cc
@@ -73,8 +73,8 @@ void IdentityMintRequestQueue::RequestCancel(
bool IdentityMintRequestQueue::empty(IdentityMintRequestQueue::MintType type,
const ExtensionTokenKey& key) {
RequestQueueMap& request_queue_map = GetRequestQueueMap(type);
- return !ContainsKey(request_queue_map, key) ||
- (request_queue_map.find(key))->second.empty();
+ return !base::ContainsKey(request_queue_map, key) ||
+ (request_queue_map.find(key))->second.empty();
}
IdentityMintRequestQueue::RequestQueueMap&

Powered by Google App Engine
This is Rietveld 408576698