| Index: net/quic/chromium/quic_end_to_end_unittest.cc
 | 
| diff --git a/net/quic/chromium/quic_end_to_end_unittest.cc b/net/quic/chromium/quic_end_to_end_unittest.cc
 | 
| index cd551f14c005b2b0711a0e8b2a337955e32038e5..1a14290f358d0dbffd8ad25354868379a12eec9b 100644
 | 
| --- a/net/quic/chromium/quic_end_to_end_unittest.cc
 | 
| +++ b/net/quic/chromium/quic_end_to_end_unittest.cc
 | 
| @@ -107,6 +107,13 @@ class QuicEndToEndTest : public ::testing::TestWithParam<TestParams> {
 | 
|          auth_handler_factory_(
 | 
|              HttpAuthHandlerFactory::CreateDefault(&host_resolver_)),
 | 
|          strike_register_no_startup_period_(false) {
 | 
| +    // TODO(crbug.com/642709) These values are currently needed to avoid test
 | 
| +    // test failures on iOS10.  It's unclear why this is happenening, and should
 | 
| +    // be removed after investigation.
 | 
| +    FLAGS_quic_enable_version_35 = true;
 | 
| +    FLAGS_quic_enable_version_36 = true;
 | 
| +    FLAGS_quic_enable_version_36_v2 = true;
 | 
| +
 | 
|      request_.method = "GET";
 | 
|      request_.url = GURL("https://test.example.com/");
 | 
|      request_.load_flags = 0;
 | 
| 
 |