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) |