| Index: net/quic/core/crypto/quic_compressed_certs_cache_test.cc
|
| diff --git a/net/quic/core/crypto/quic_compressed_certs_cache_test.cc b/net/quic/core/crypto/quic_compressed_certs_cache_test.cc
|
| index c446a09cab32f87bdd6a3c65af20e9f46f9669bc..cb8857bf5bdae2e228547126afa14f1f78ae0701 100644
|
| --- a/net/quic/core/crypto/quic_compressed_certs_cache_test.cc
|
| +++ b/net/quic/core/crypto/quic_compressed_certs_cache_test.cc
|
| @@ -30,7 +30,7 @@ class QuicCompressedCertsCacheTest : public testing::Test {
|
| };
|
|
|
| TEST_F(QuicCompressedCertsCacheTest, CacheHit) {
|
| - vector<string> certs = {"leaf cert", "intermediate cert", "root cert"};
|
| + std::vector<string> certs = {"leaf cert", "intermediate cert", "root cert"};
|
| scoped_refptr<ProofSource::Chain> chain(new ProofSource::Chain(certs));
|
| string common_certs = "common certs";
|
| string cached_certs = "cached certs";
|
| @@ -45,7 +45,7 @@ TEST_F(QuicCompressedCertsCacheTest, CacheHit) {
|
| }
|
|
|
| TEST_F(QuicCompressedCertsCacheTest, CacheMiss) {
|
| - vector<string> certs = {"leaf cert", "intermediate cert", "root cert"};
|
| + std::vector<string> certs = {"leaf cert", "intermediate cert", "root cert"};
|
| scoped_refptr<ProofSource::Chain> chain(new ProofSource::Chain(certs));
|
| string common_certs = "common certs";
|
| string cached_certs = "cached certs";
|
| @@ -65,7 +65,7 @@ TEST_F(QuicCompressedCertsCacheTest, CacheMiss) {
|
| TEST_F(QuicCompressedCertsCacheTest, CacheMissDueToEviction) {
|
| // Test cache returns a miss when a queried uncompressed certs was cached but
|
| // then evicted.
|
| - vector<string> certs = {"leaf cert", "intermediate cert", "root cert"};
|
| + std::vector<string> certs = {"leaf cert", "intermediate cert", "root cert"};
|
| scoped_refptr<ProofSource::Chain> chain(new ProofSource::Chain(certs));
|
|
|
| string common_certs = "common certs";
|
|
|