Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1789)

Unified Diff: components/network_session_configurator/network_session_configurator.cc

Issue 2236973002: Landing Recent QUIC changes until 4AM, Aug 7, 2016 UTC-4 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: flip quic_sequencer_buffer_retire_block_in_time to true Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/network_session_configurator/network_session_configurator.cc
diff --git a/components/network_session_configurator/network_session_configurator.cc b/components/network_session_configurator/network_session_configurator.cc
index 92630b0dd6998f4484b771586ca9215763f11796..48af1c0d290d9d0b496ec7e2bf7fda8c15615c9e 100644
--- a/components/network_session_configurator/network_session_configurator.cc
+++ b/components/network_session_configurator/network_session_configurator.cc
@@ -352,7 +352,7 @@ void ConfigureQuicParams(base::StringPiece quic_trial_group,
namespace network_session_configurator {
net::QuicVersion ParseQuicVersion(const std::string& quic_version) {
- net::QuicVersionVector supported_versions = net::QuicSupportedVersions();
+ net::QuicVersionVector supported_versions = net::AllSupportedVersions();
for (size_t i = 0; i < supported_versions.size(); ++i) {
net::QuicVersion version = supported_versions[i];
if (net::QuicVersionToString(version) == quic_version) {

Powered by Google App Engine
This is Rietveld 408576698