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

Unified Diff: net/quic/core/crypto/quic_crypto_client_config.cc

Issue 2229393003: net: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased 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: net/quic/core/crypto/quic_crypto_client_config.cc
diff --git a/net/quic/core/crypto/quic_crypto_client_config.cc b/net/quic/core/crypto/quic_crypto_client_config.cc
index 47c03a7ceb55128d62861de223c191cfd2bb0bf9..fec498bcbafe8c31020f7a4bec0ac65ad875940c 100644
--- a/net/quic/core/crypto/quic_crypto_client_config.cc
+++ b/net/quic/core/crypto/quic_crypto_client_config.cc
@@ -62,7 +62,7 @@ QuicCryptoClientConfig::QuicCryptoClientConfig(
}
QuicCryptoClientConfig::~QuicCryptoClientConfig() {
- STLDeleteValues(&cached_states_);
+ base::STLDeleteValues(&cached_states_);
}
QuicCryptoClientConfig::CachedState::CachedState()
@@ -958,7 +958,7 @@ bool QuicCryptoClientConfig::PopulateFromCanonicalConfig(
QuicServerId suffix_server_id(canonical_suffixes_[i], server_id.port(),
server_id.privacy_mode());
- if (!ContainsKey(canonical_server_map_, suffix_server_id)) {
+ if (!base::ContainsKey(canonical_server_map_, suffix_server_id)) {
// This is the first host we've seen which matches the suffix, so make it
// canonical.
canonical_server_map_[suffix_server_id] = server_id;
« no previous file with comments | « net/quic/core/crypto/crypto_server_config_protobuf.cc ('k') | net/quic/core/crypto/quic_crypto_server_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698