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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc

Issue 1862193002: Enable QUIC for proxies only when QUIC is enabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed sclittle comments Created 4 years, 7 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/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc
index ae152f62524592fdbb2979cdb6ff486a9efa4a2c..1741e3c31d273114ebd9ca3c974339f848b9fb23 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc
@@ -96,7 +96,6 @@ DataReductionProxyIOData::DataReductionProxyIOData(
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
bool enabled,
- bool enable_quic,
const std::string& user_agent)
: client_(client),
net_log_(net_log),
@@ -112,7 +111,6 @@ DataReductionProxyIOData::DataReductionProxyIOData(
DCHECK(ui_task_runner_);
std::unique_ptr<DataReductionProxyParams> params(
new DataReductionProxyParams(param_flags));
- params->EnableQuic(enable_quic);
event_creator_.reset(new DataReductionProxyEventCreator(this));
configurator_.reset(
new DataReductionProxyConfigurator(net_log, event_creator_.get()));

Powered by Google App Engine
This is Rietveld 408576698