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

Unified Diff: chrome/browser/io_thread.cc

Issue 2537993003: Remove the unused QUIC port selection logic. (Closed)
Patch Set: Remove obsolete tests Created 4 years 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 | chrome/browser/resources/net_internals/quic_view.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.cc
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
index 662c9e7b349f2cd1359adea8257f4aa60cd90f37..b87234bcfd82b89d5705760ba5a1a14154c99c23 100644
--- a/chrome/browser/io_thread.cc
+++ b/chrome/browser/io_thread.cc
@@ -929,12 +929,6 @@ void IOThread::ConfigureParamsFromFieldTrialsAndCommandLine(
if (command_line.HasSwitch(switches::kDisableHttp2))
params->enable_http2 = false;
- if (command_line.HasSwitch(switches::kDisableQuicPortSelection)) {
- params->enable_quic_port_selection = false;
- } else if (command_line.HasSwitch(switches::kEnableQuicPortSelection)) {
- params->enable_quic_port_selection = true;
- }
-
if (params->enable_quic) {
if (command_line.HasSwitch(switches::kQuicConnectionOptions)) {
params->quic_connection_options =
« no previous file with comments | « no previous file | chrome/browser/resources/net_internals/quic_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698