| Index: chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h
|
| diff --git a/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h b/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h
|
| index 350992c245c25f576ce7e0473869523157841b19..ded2795ad5fe45ca3c343711d0df05eb3369ff99 100644
|
| --- a/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h
|
| +++ b/chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h
|
| @@ -12,11 +12,13 @@
|
| class PrefService;
|
|
|
| namespace base {
|
| +class SequencedTaskRunner;
|
| class SingleThreadTaskRunner;
|
| }
|
|
|
| namespace data_reduction_proxy {
|
| class DataReductionProxyIOData;
|
| +class DataStore;
|
| }
|
|
|
| namespace net {
|
| @@ -61,7 +63,9 @@ class DataReductionProxyChromeSettings
|
| data_reduction_proxy::DataReductionProxyIOData* io_data,
|
| PrefService* profile_prefs,
|
| net::URLRequestContextGetter* request_context_getter,
|
| - const scoped_refptr<base::SingleThreadTaskRunner>& ui_task_runner);
|
| + scoped_ptr<data_reduction_proxy::DataStore> store,
|
| + const scoped_refptr<base::SingleThreadTaskRunner>& ui_task_runner,
|
| + const scoped_refptr<base::SequencedTaskRunner>& db_task_runner);
|
|
|
| // Gets the client type for the data reduction proxy.
|
| static data_reduction_proxy::Client GetClient();
|
|
|