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

Unified Diff: android_webview/browser/aw_browser_context.h

Issue 893003002: Data Reduction Proxy class ownership updates and Settings cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 10 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: 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_;
« no previous file with comments | « no previous file | android_webview/browser/aw_browser_context.cc » ('j') | android_webview/browser/aw_browser_context.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698