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

Unified Diff: chrome/browser/download/download_request_limiter.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/download/download_request_limiter.cc
diff --git a/chrome/browser/download/download_request_limiter.cc b/chrome/browser/download/download_request_limiter.cc
index 17247d4a13c0d50d1b093d8ebb07f5063355aa77..89ba925f8037930619efd39ee329a34d1f08449f 100644
--- a/chrome/browser/download/download_request_limiter.cc
+++ b/chrome/browser/download/download_request_limiter.cc
@@ -469,7 +469,7 @@ void DownloadRequestLimiter::CanDownloadImpl(
void DownloadRequestLimiter::Remove(TabDownloadState* state,
content::WebContents* contents) {
- DCHECK(ContainsKey(state_map_, contents));
+ DCHECK(base::ContainsKey(state_map_, contents));
state_map_.erase(contents);
delete state;
}
« no previous file with comments | « chrome/browser/download/download_query_unittest.cc ('k') | chrome/browser/download/download_status_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698