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

Unified Diff: net/quic/core/quic_protocol.cc

Issue 2230223003: fix bug in QUIC force HOL blocking experiment, guarded by --quic_enable_version_36_v2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@129468670
Patch Set: git pull from up stream 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
« no previous file with comments | « net/quic/core/quic_protocol.h ('k') | net/quic/core/quic_protocol_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_protocol.cc
diff --git a/net/quic/core/quic_protocol.cc b/net/quic/core/quic_protocol.cc
index dd908d1ff6f9b611fe7f1f1e53b8a0c1fa13dc31..586e3160a18600880b41e4b2649b1adfc9603616 100644
--- a/net/quic/core/quic_protocol.cc
+++ b/net/quic/core/quic_protocol.cc
@@ -192,7 +192,7 @@ QuicVersionVector FilterSupportedVersions(QuicVersionVector versions) {
filtered_versions.push_back(version);
}
} else if (version == QUIC_VERSION_36) {
- if (FLAGS_quic_enable_version_35 && FLAGS_quic_enable_version_36) {
+ if (FLAGS_quic_enable_version_35 && FLAGS_quic_enable_version_36_v2) {
filtered_versions.push_back(version);
}
} else {
@@ -850,16 +850,16 @@ StringPiece QuicPacket::Plaintext(QuicVersion version) const {
QuicVersionManager::QuicVersionManager(QuicVersionVector supported_versions)
: enable_quic_version_35_(FLAGS_quic_enable_version_35),
- enable_quic_version_36_(FLAGS_quic_enable_version_36),
+ enable_quic_version_36_(FLAGS_quic_enable_version_36_v2),
allowed_supported_versions_(supported_versions),
filtered_supported_versions_(
FilterSupportedVersions(supported_versions)) {}
const QuicVersionVector& QuicVersionManager::GetSupportedVersions() {
if (enable_quic_version_35_ != FLAGS_quic_enable_version_35 ||
- enable_quic_version_36_ != FLAGS_quic_enable_version_36) {
+ enable_quic_version_36_ != FLAGS_quic_enable_version_36_v2) {
enable_quic_version_35_ = FLAGS_quic_enable_version_35;
- enable_quic_version_36_ = FLAGS_quic_enable_version_36;
+ enable_quic_version_36_ = FLAGS_quic_enable_version_36_v2;
filtered_supported_versions_ =
FilterSupportedVersions(allowed_supported_versions_);
}
« no previous file with comments | « net/quic/core/quic_protocol.h ('k') | net/quic/core/quic_protocol_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698