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

Unified Diff: chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc

Issue 981633002: Created new URLRequestContext for secure proxy check (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed minor bug Created 5 years, 8 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: chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc
diff --git a/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc b/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc
index e6e8ae215502ac73933be4bdef11d6fec6eed671..2c5d128ad02d86274665f72e5822ef72ed3b45b1 100644
--- a/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc
+++ b/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_io_data.cc
@@ -26,6 +26,7 @@ using data_reduction_proxy::DataReductionProxyParams;
scoped_ptr<data_reduction_proxy::DataReductionProxyIOData>
CreateDataReductionProxyChromeIOData(
+ net::URLRequestContextGetter* request_context_getter,
bengr 2015/04/10 17:11:43 nit: name the variable: url_request_context_getter
tbansal1 2015/04/14 22:36:22 obsolete.
net::NetLog* net_log,
PrefService* prefs,
const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner,
@@ -52,7 +53,8 @@ CreateDataReductionProxyChromeIOData(
data_reduction_proxy_io_data(
new data_reduction_proxy::DataReductionProxyIOData(
DataReductionProxyChromeSettings::GetClient(), flags, net_log,
- io_task_runner, ui_task_runner, enable_quic));
+ request_context_getter, io_task_runner, ui_task_runner,
+ enable_quic));
data_reduction_proxy_io_data->InitOnUIThread(prefs);
#if defined(ENABLE_DATA_REDUCTION_PROXY_DEBUGGING)

Powered by Google App Engine
This is Rietveld 408576698