| 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..1ac853a550ed310542ae8d0b07fdd7f6601a4b0c 100644
|
| --- a/net/quic/core/crypto/quic_compressed_certs_cache_test.cc
|
| +++ b/net/quic/core/crypto/quic_compressed_certs_cache_test.cc
|
| @@ -12,7 +12,6 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| using std::string;
|
| -using std::vector;
|
|
|
| namespace net {
|
|
|
| @@ -30,7 +29,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 +44,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 +64,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";
|
|
|