| Index: net/tools/quic/end_to_end_test.cc
|
| diff --git a/net/tools/quic/end_to_end_test.cc b/net/tools/quic/end_to_end_test.cc
|
| index dedfd3fe2889561f17cff692ebb895883c66382c..89690adf52bfa57e385147197929879f0da00ae5 100644
|
| --- a/net/tools/quic/end_to_end_test.cc
|
| +++ b/net/tools/quic/end_to_end_test.cc
|
| @@ -149,7 +149,7 @@ struct TestParams {
|
| };
|
|
|
| // Constructs various test permutations.
|
| -vector<TestParams> GetTestParams() {
|
| +std::vector<TestParams> GetTestParams() {
|
| // Divide the versions into buckets in which the intra-frame format
|
| // is compatible. When clients encounter QUIC version negotiation
|
| // they simply retransmit all packets using the new version's
|
| @@ -182,7 +182,7 @@ vector<TestParams> GetTestParams() {
|
| // is used to prune the number of tests that are run.
|
| const int kMaxEnabledOptions = 6;
|
| int max_enabled_options = 0;
|
| - vector<TestParams> params;
|
| + std::vector<TestParams> params;
|
| for (bool server_uses_stateless_rejects_if_peer_supported : {true, false}) {
|
| for (bool client_supports_stateless_rejects : {true, false}) {
|
| for (const QuicTag congestion_control_tag : {kRENO, kQBIC}) {
|
|
|