| Index: net/quic/test_tools/quic_stream_factory_peer.cc
|
| diff --git a/net/quic/test_tools/quic_stream_factory_peer.cc b/net/quic/test_tools/quic_stream_factory_peer.cc
|
| index 94dd59bd0ae71b0413513e5949be5ffd44ccef1a..969e86800868e48446effd5e077b5470d545292e 100644
|
| --- a/net/quic/test_tools/quic_stream_factory_peer.cc
|
| +++ b/net/quic/test_tools/quic_stream_factory_peer.cc
|
| @@ -17,7 +17,6 @@
|
| #include "net/test/test_data_directory.h"
|
|
|
| using std::string;
|
| -using std::vector;
|
|
|
| namespace net {
|
| namespace test {
|
| @@ -169,7 +168,7 @@ void QuicStreamFactoryPeer::CacheDummyServerConfig(
|
| string source_address_token("test_source_address_token");
|
| string signature("test_signature");
|
|
|
| - vector<string> certs;
|
| + std::vector<string> certs;
|
| // Load a certificate that is valid for *.example.org
|
| scoped_refptr<X509Certificate> cert(
|
| ImportCertFromFile(GetTestCertsDirectory(), "wildcard.pem"));
|
|
|