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

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

Issue 2524523002: Remove various 'using std::' statements from QUIC code and use (Closed)
Patch Set: Rebase Created 4 years 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/quic/core/crypto/crypto_utils.cc ('k') | net/quic/core/crypto/quic_crypto_server_config_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/crypto/quic_crypto_server_config.cc
diff --git a/net/quic/core/crypto/quic_crypto_server_config.cc b/net/quic/core/crypto/quic_crypto_server_config.cc
index d7db1fae3a81adb312fbe9d2bb5fc73a5a6e2386..77fb23794f719defcc299b03c4b45ea4c371922f 100644
--- a/net/quic/core/crypto/quic_crypto_server_config.cc
+++ b/net/quic/core/crypto/quic_crypto_server_config.cc
@@ -41,10 +41,7 @@
using base::StringPiece;
using crypto::SecureHash;
-using std::map;
-using std::sort;
using std::string;
-using std::vector;
namespace net {
@@ -407,11 +404,11 @@ bool QuicCryptoServerConfig::SetConfigs(
}
void QuicCryptoServerConfig::SetSourceAddressTokenKeys(
- const vector<string>& keys) {
+ const std::vector<string>& keys) {
source_address_token_boxer_.SetKeys(keys);
}
-void QuicCryptoServerConfig::GetConfigIds(vector<string>* scids) const {
+void QuicCryptoServerConfig::GetConfigIds(std::vector<string>* scids) const {
base::AutoLock locked(configs_lock_);
for (ConfigMap::const_iterator it = configs_.begin(); it != configs_.end();
++it) {
« no previous file with comments | « net/quic/core/crypto/crypto_utils.cc ('k') | net/quic/core/crypto/quic_crypto_server_config_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698