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

Unified Diff: net/http/http_stream_factory_impl_job_controller.cc

Issue 2401363004: relnote: Deprecate flag quic_disable_pre_32 (Closed)
Patch Set: remove unused LoadTestCert method Created 4 years, 2 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 | « no previous file | net/quic/chromium/crypto/proof_source_chromium.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_stream_factory_impl_job_controller.cc
diff --git a/net/http/http_stream_factory_impl_job_controller.cc b/net/http/http_stream_factory_impl_job_controller.cc
index 571127665478371d4f774260193dc78579e5e427..daff299b63777f36699ba447e5d64c508e2d6fe5 100644
--- a/net/http/http_stream_factory_impl_job_controller.cc
+++ b/net/http/http_stream_factory_impl_job_controller.cc
@@ -830,13 +830,6 @@ GURL HttpStreamFactoryImpl::JobController::ApplyHostMappingRules(
bool HttpStreamFactoryImpl::JobController::IsQuicWhitelistedForHost(
const std::string& host) {
bool whitelist_needed = false;
- for (QuicVersion version : session_->params().quic_supported_versions) {
- if (version <= QUIC_VERSION_30) {
- whitelist_needed = true;
- break;
- }
- }
-
// The QUIC whitelist is not needed in QUIC versions after 30.
if (!whitelist_needed)
return true;
« no previous file with comments | « no previous file | net/quic/chromium/crypto/proof_source_chromium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698