| Index: net/quic/core/crypto/proof_source.cc
|
| diff --git a/net/quic/core/crypto/proof_source.cc b/net/quic/core/crypto/proof_source.cc
|
| index 9a72345f09041633dcd4aef2091ca7a6b4e37f3e..7b7f38be57e00eac54b479429efe85b0b8e96226 100644
|
| --- a/net/quic/core/crypto/proof_source.cc
|
| +++ b/net/quic/core/crypto/proof_source.cc
|
| @@ -4,10 +4,11 @@
|
|
|
| #include "net/quic/core/crypto/proof_source.h"
|
|
|
| +using std::string;
|
| +
|
| namespace net {
|
|
|
| -ProofSource::Chain::Chain(const std::vector<std::string>& certs)
|
| - : certs(certs) {}
|
| +ProofSource::Chain::Chain(const std::vector<string>& certs) : certs(certs) {}
|
|
|
| ProofSource::Chain::~Chain() {}
|
|
|
|
|