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

Unified Diff: chrome/browser/io_thread.cc

Issue 12326073: Remove the --use-spdy-over-quic command line option. Always use SPDY over QUIC. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 10 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 | « chrome/browser/io_thread.h ('k') | chrome/common/chrome_switches.h » ('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 ebefa507478529197075af9250f9deeb42f1587d..178cbe79c06eda215033835a76e3040306feba44 100644
--- a/chrome/browser/io_thread.cc
+++ b/chrome/browser/io_thread.cc
@@ -529,9 +529,6 @@ void IOThread::Init() {
GetSwitchValueAsInt(command_line,
switches::kOriginPortToForceQuicOn));
}
- if (command_line.HasSwitch(switches::kUseSpdyOverQuic)) {
- globals_->use_spdy_over_quic.set(true);
- }
if (command_line.HasSwitch(
switches::kEnableUserAlternateProtocolPorts)) {
globals_->enable_user_alternate_protocol_ports = true;
@@ -842,7 +839,6 @@ void IOThread::InitializeNetworkSessionParams(
globals_->enable_quic.CopyToIfSet(&params->enable_quic);
globals_->origin_port_to_force_quic_on.CopyToIfSet(
&params->origin_port_to_force_quic_on);
- globals_->use_spdy_over_quic.CopyToIfSet(&params->use_spdy_over_quic);
params->enable_user_alternate_protocol_ports =
globals_->enable_user_alternate_protocol_ports;
}
« no previous file with comments | « chrome/browser/io_thread.h ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698