| Index: net/quic/core/crypto/crypto_framer_test.cc
|
| diff --git a/net/quic/core/crypto/crypto_framer_test.cc b/net/quic/core/crypto/crypto_framer_test.cc
|
| index bfe2d5af78b1a58919ec9210f363fc445ec24d2c..ae695d34077467d2a31424d31597c58e05eb117f 100644
|
| --- a/net/quic/core/crypto/crypto_framer_test.cc
|
| +++ b/net/quic/core/crypto/crypto_framer_test.cc
|
| @@ -16,9 +16,7 @@
|
| #include "net/quic/test_tools/quic_test_utils.h"
|
|
|
| using base::StringPiece;
|
| -using std::map;
|
| using std::string;
|
| -using std::vector;
|
|
|
| namespace net {
|
|
|
| @@ -48,7 +46,7 @@ class TestCryptoVisitor : public CryptoFramerVisitorInterface {
|
| // Counters from the visitor callbacks.
|
| int error_count_;
|
|
|
| - vector<CryptoHandshakeMessage> messages_;
|
| + std::vector<CryptoHandshakeMessage> messages_;
|
| };
|
|
|
| TEST(CryptoFramerTest, ConstructHandshakeMessage) {
|
|
|