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

Unified Diff: net/cert/crl_set.cc

Issue 1869503003: Convert //net and //chromecast to std::unordered_* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix cast 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
Index: net/cert/crl_set.cc
diff --git a/net/cert/crl_set.cc b/net/cert/crl_set.cc
index bc2cecb2c77784cf1a0423a5b650a765b5c49b07..f20e2ec2830d431063d77cb994f78ce933dbbe77 100644
--- a/net/cert/crl_set.cc
+++ b/net/cert/crl_set.cc
@@ -44,7 +44,7 @@ CRLSet::Result CRLSet::CheckSerial(
while (serial.size() > 1 && serial[0] == 0x00)
serial.remove_prefix(1);
- base::hash_map<std::string, size_t>::const_iterator crl_index =
+ std::unordered_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;

Powered by Google App Engine
This is Rietveld 408576698