| Index: net/tools/quic/stateless_rejector_test.cc
|
| diff --git a/net/tools/quic/stateless_rejector_test.cc b/net/tools/quic/stateless_rejector_test.cc
|
| index d773ff53de792afcc835318abfb96f34c301dbe2..a6a688c0b94628d24d47178a2244b4501417ff33 100644
|
| --- a/net/tools/quic/stateless_rejector_test.cc
|
| +++ b/net/tools/quic/stateless_rejector_test.cc
|
| @@ -18,7 +18,6 @@
|
|
|
| using std::ostream;
|
| using std::string;
|
| -using std::vector;
|
|
|
| namespace net {
|
| namespace test {
|
| @@ -57,8 +56,8 @@ string TestParamToString(const testing::TestParamInfo<TestParams>& params) {
|
| FlagsModeToString(params.param.flags));
|
| }
|
|
|
| -vector<TestParams> GetTestParams() {
|
| - vector<TestParams> params;
|
| +std::vector<TestParams> GetTestParams() {
|
| + std::vector<TestParams> params;
|
| for (FlagsMode flags :
|
| {ENABLED, STATELESS_DISABLED, CHEAP_DISABLED, BOTH_DISABLED}) {
|
| for (QuicVersion version : AllSupportedVersions()) {
|
|
|