Index: net/quic/core/crypto/crypto_server_test.cc |
diff --git a/net/quic/core/crypto/crypto_server_test.cc b/net/quic/core/crypto/crypto_server_test.cc |
index 2d567b20b8920e4badc30056d0f089d4c4d8f3a1..6b95ace14677746596db9287c7662c1dc5def2ba 100644 |
--- a/net/quic/core/crypto/crypto_server_test.cc |
+++ b/net/quic/core/crypto/crypto_server_test.cc |
@@ -33,7 +33,6 @@ using base::StringPiece; |
using std::endl; |
using std::ostream; |
using std::string; |
-using std::vector; |
namespace net { |
namespace test { |
@@ -85,8 +84,8 @@ struct TestParams { |
}; |
// Constructs various test permutations. |
-vector<TestParams> GetTestParams() { |
- vector<TestParams> params; |
+std::vector<TestParams> GetTestParams() { |
+ std::vector<TestParams> params; |
static const bool kTrueFalse[] = {true, false}; |
for (bool enable_stateless_rejects : kTrueFalse) { |
for (bool use_stateless_rejects : kTrueFalse) { |
@@ -910,9 +909,9 @@ TEST_P(CryptoServerTest, ProofForSuppliedServerConfig) { |
// Get certs from compressed certs. |
const CommonCertSets* common_cert_sets(CommonCertSets::GetInstanceQUIC()); |
- vector<string> cached_certs; |
+ std::vector<string> cached_certs; |
- vector<string> certs; |
+ std::vector<string> certs; |
ASSERT_TRUE(CertCompressor::DecompressChain(cert, cached_certs, |
common_cert_sets, &certs)); |