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..5013f2f8448207798cee96d04f782df1ff431721 100644 |
--- a/net/quic/core/crypto/crypto_server_test.cc |
+++ b/net/quic/core/crypto/crypto_server_test.cc |
@@ -85,8 +85,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 +910,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)); |