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

Unified Diff: net/cert/crl_set.cc

Issue 1884453002: Revert of Convert //net and //chromecast to std::unordered_* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « net/cert/crl_set.h ('k') | net/disk_cache/blockfile/backend_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/crl_set.cc
diff --git a/net/cert/crl_set.cc b/net/cert/crl_set.cc
index f20e2ec2830d431063d77cb994f78ce933dbbe77..bc2cecb2c77784cf1a0423a5b650a765b5c49b07 100644
--- a/net/cert/crl_set.cc
+++ b/net/cert/crl_set.cc
@@ -44,7 +44,7 @@
while (serial.size() > 1 && serial[0] == 0x00)
serial.remove_prefix(1);
- std::unordered_map<std::string, size_t>::const_iterator crl_index =
+ base::hash_map<std::string, size_t>::const_iterator crl_index =
crls_index_by_issuer_.find(issuer_spki_hash.as_string());
if (crl_index == crls_index_by_issuer_.end())
return UNKNOWN;
« no previous file with comments | « net/cert/crl_set.h ('k') | net/disk_cache/blockfile/backend_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698