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

Unified Diff: chrome/browser/safe_browsing/protocol_manager.h

Issue 2829163004: Remove uses of base::hash_map from //chrome (Closed)
Patch Set: Downloads back Created 3 years, 6 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/safe_browsing/protocol_manager.h
diff --git a/chrome/browser/safe_browsing/protocol_manager.h b/chrome/browser/safe_browsing/protocol_manager.h
index 8878df62a7c89a6d414afc285bdaddef3111f398..125d7e25e38c4a948b8a3801aacb0fd1c00c2d9c 100644
--- a/chrome/browser/safe_browsing/protocol_manager.h
+++ b/chrome/browser/safe_browsing/protocol_manager.h
@@ -334,8 +334,8 @@ class SafeBrowsingProtocolManager : public net::URLFetcherDelegate {
// All chunk requests that need to be made.
std::deque<ChunkUrl> chunk_request_urls_;
- base::hash_map<const net::URLFetcher*,
- std::pair<std::unique_ptr<net::URLFetcher>, FullHashDetails>>
+ std::map<const net::URLFetcher*,
+ std::pair<std::unique_ptr<net::URLFetcher>, FullHashDetails>>
hash_requests_;
// True if the service has been given an add/sub chunk but it hasn't been

Powered by Google App Engine
This is Rietveld 408576698