summaryrefslogtreecommitdiff
path: root/chromium/net/third_party/quiche/src/quic/quartc/quartc_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/third_party/quiche/src/quic/quartc/quartc_factory.cc')
-rw-r--r--chromium/net/third_party/quiche/src/quic/quartc/quartc_factory.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/chromium/net/third_party/quiche/src/quic/quartc/quartc_factory.cc b/chromium/net/third_party/quiche/src/quic/quartc/quartc_factory.cc
index 413c4f83f74..ad677fd8c94 100644
--- a/chromium/net/third_party/quiche/src/quic/quartc/quartc_factory.cc
+++ b/chromium/net/third_party/quiche/src/quic/quartc/quartc_factory.cc
@@ -63,11 +63,8 @@ void ConfigureGlobalQuicSettings() {
// Fixes behavior of StopReading() with level-triggered stream sequencers.
SetQuicReloadableFlag(quic_stop_reading_when_level_triggered, true);
- // Enable version 47 to enable variable-length connection ids.
- SetQuicReloadableFlag(quic_enable_version_47, true);
-
- // Enable version 48 to be compatible with the latest version of Chrome.
- SetQuicReloadableFlag(quic_enable_version_48_2, true);
+ // Enable version 50 to be compatible with the latest version of Chrome.
+ SetQuicReloadableFlag(quic_enable_version_50, true);
// Ensure that we don't drop data because QUIC streams refuse to buffer it.
// TODO(b/120099046): Replace this with correct handling of WriteMemSlices().
@@ -98,7 +95,7 @@ QuicConfig CreateQuicConfig(const QuartcSessionConfig& quartc_session_config) {
// In exoblaze this may return false. DCHECK to avoid problems caused by
// incorrect flags configuration.
- DCHECK(GetQuicReloadableFlag(quic_enable_version_47))
+ DCHECK(GetQuicReloadableFlag(quic_enable_version_50))
<< "Your build does not support quic reloadable flags and shouldn't "
"place Quartc calls";