summaryrefslogtreecommitdiffstats
path: root/chromium/net/cert/crl_set.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/cert/crl_set.h')
-rw-r--r--chromium/net/cert/crl_set.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/net/cert/crl_set.h b/chromium/net/cert/crl_set.h
index 348005f097b..6ef4bb740b2 100644
--- a/chromium/net/cert/crl_set.h
+++ b/chromium/net/cert/crl_set.h
@@ -5,11 +5,11 @@
#ifndef NET_CERT_CRL_SET_H_
#define NET_CERT_CRL_SET_H_
-#include <map>
#include <string>
#include <utility>
#include <vector>
+#include "base/containers/hash_tables.h"
#include "base/memory/ref_counted.h"
#include "base/strings/string_piece.h"
#include "net/base/net_export.h"
@@ -117,7 +117,7 @@ class NET_EXPORT CRLSet : public base::RefCountedThreadSafe<CRLSet> {
// where the information for that issuer can be found. We have both |crls_|
// and |crls_index_by_issuer_| because, when applying a delta update, we need
// to identify a CRL by index.
- std::map<std::string, size_t> crls_index_by_issuer_;
+ base::hash_map<std::string, size_t> crls_index_by_issuer_;
// blocked_spkis_ contains the SHA256 hashes of SPKIs which are to be blocked
// no matter where in a certificate chain they might appear.
std::vector<std::string> blocked_spkis_;