| Index: net/quic/core/quic_packet_creator_test.cc
|
| diff --git a/net/quic/core/quic_packet_creator_test.cc b/net/quic/core/quic_packet_creator_test.cc
|
| index d8565170b332ec205de8e3b1be078f778517dfae..6a31455e76f8575f1dd3aa531c6ba153120f6cd8 100644
|
| --- a/net/quic/core/quic_packet_creator_test.cc
|
| +++ b/net/quic/core/quic_packet_creator_test.cc
|
| @@ -26,7 +26,6 @@
|
| using base::StringPiece;
|
| using std::ostream;
|
| using std::string;
|
| -using std::vector;
|
| using testing::DoAll;
|
| using testing::InSequence;
|
| using testing::Return;
|
| @@ -60,8 +59,8 @@ struct TestParams {
|
| };
|
|
|
| // Constructs various test permutations.
|
| -vector<TestParams> GetTestParams() {
|
| - vector<TestParams> params;
|
| +std::vector<TestParams> GetTestParams() {
|
| + std::vector<TestParams> params;
|
| constexpr QuicConnectionIdLength kMax = PACKET_8BYTE_CONNECTION_ID;
|
| QuicVersionVector all_supported_versions = AllSupportedVersions();
|
| for (size_t i = 0; i < all_supported_versions.size(); ++i) {
|
|
|