Chromium Code Reviews| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h |
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h |
| index 5fbd0adaf5c39aedff439f20d297518d7da8b0d2..b66f0e3ad4cbe1f52ba68afe5effc5cf74b4fdc4 100644 |
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h |
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.h |
| @@ -12,9 +12,11 @@ |
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_delegate.h" |
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h" |
| #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_request_options.h" |
| +#include "net/url_request/url_request_context_getter.h" |
|
sclittle
2015/03/20 19:28:46
Unnecessary include.
tbansal1
2015/04/01 19:58:59
Done.
|
| namespace net { |
| class NetLog; |
| +class URLRequestContextGetter; |
| class URLRequestInterceptor; |
| } |
| @@ -38,6 +40,7 @@ class DataReductionProxyIOData { |
| const Client& client, |
| int param_flags, |
| net::NetLog* net_log, |
| + net::URLRequestContextGetter* request_context_getter, |
|
sclittle
2015/03/20 19:28:46
I think the net::URLRequestContextGetter from the
tbansal1
2015/04/01 19:58:59
Right, GetRequestContext() can only be called on U
|
| scoped_refptr<base::SingleThreadTaskRunner> io_task_runner, |
| scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner, |
| bool enable_quic); |