| Index: net/quic/chromium/crypto/proof_source_chromium.cc
|
| diff --git a/net/quic/chromium/crypto/proof_source_chromium.cc b/net/quic/chromium/crypto/proof_source_chromium.cc
|
| index a27571e64c90fc42384a99bcb71e1297c5d50f06..daf2c740b2d6e751ec90fb52bf648320a9cd6c48 100644
|
| --- a/net/quic/chromium/crypto/proof_source_chromium.cc
|
| +++ b/net/quic/chromium/crypto/proof_source_chromium.cc
|
| @@ -12,7 +12,6 @@
|
| #include "third_party/boringssl/src/include/openssl/rsa.h"
|
|
|
| using std::string;
|
| -using std::vector;
|
|
|
| namespace net {
|
|
|
| @@ -40,7 +39,7 @@ bool ProofSourceChromium::Initialize(const base::FilePath& cert_path,
|
| return false;
|
| }
|
|
|
| - vector<string> certs;
|
| + std::vector<string> certs;
|
| for (const scoped_refptr<X509Certificate>& cert : certs_in_file) {
|
| std::string der_encoded_cert;
|
| if (!X509Certificate::GetDEREncoded(cert->os_cert_handle(),
|
|
|