Index: android_webview/browser/aw_browser_context.h |
diff --git a/android_webview/browser/aw_browser_context.h b/android_webview/browser/aw_browser_context.h |
index 755a838f4effb1ec7c36efd5abc4e980df7cadc0..50f737a2778c16211e0a0cd49667d1155b740ea1 100644 |
--- a/android_webview/browser/aw_browser_context.h |
+++ b/android_webview/browser/aw_browser_context.h |
@@ -33,6 +33,7 @@ namespace data_reduction_proxy { |
class DataReductionProxyConfigurator; |
class DataReductionProxyIOData; |
class DataReductionProxySettings; |
+class DataSaverService; |
bengr
2015/02/17 18:10:24
I guess we can start making the name change, thoug
jeremyim
2015/02/19 21:03:44
Acknowledged.
|
} |
namespace net { |
@@ -94,9 +95,6 @@ class AwBrowserContext : public content::BrowserContext, |
data_reduction_proxy::DataReductionProxyIOData* |
GetDataReductionProxyIOData(); |
- data_reduction_proxy::DataReductionProxyConfigurator* |
- GetDataReductionProxyConfigurator(); |
- |
AwURLRequestContextGetter* GetAwURLRequestContext(); |
void CreateUserPrefServiceIfNecessary(); |
@@ -152,9 +150,10 @@ class AwBrowserContext : public content::BrowserContext, |
scoped_ptr<PrefService> user_pref_service_; |
+ scoped_ptr<AwSSLHostStateDelegate> ssl_host_state_delegate_; |
bengr
2015/02/17 18:10:24
This probably shouldn't be in this CL.
jeremyim
2015/02/19 21:03:43
Done.
|
scoped_ptr<data_reduction_proxy::DataReductionProxySettings> |
data_reduction_proxy_settings_; |
- scoped_ptr<AwSSLHostStateDelegate> ssl_host_state_delegate_; |
+ scoped_ptr<data_reduction_proxy::DataSaverService> data_saver_service_; |
scoped_ptr<data_reduction_proxy::DataReductionProxyIOData> |
data_reduction_proxy_io_data_; |