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

Unified Diff: android_webview/browser/aw_browser_context.h

Issue 778463002: Wrapped data reduction proxy initialization into its own class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@network-delegate
Patch Set: Addressed comment from mmenke Created 6 years 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
« no previous file with comments | « no previous file | android_webview/browser/aw_browser_context.cc » ('j') | chrome/browser/io_thread.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 bc2b11cb5dcc38a3e2019a2f822f8275cb1a4212..11d56021fa9c45d44b7a0159c727d26ae9ec559a 100644
--- a/android_webview/browser/aw_browser_context.h
+++ b/android_webview/browser/aw_browser_context.h
@@ -29,10 +29,8 @@ class WebContents;
}
namespace data_reduction_proxy {
-class DataReductionProxyConfigurator;
-class DataReductionProxyEventStore;
+class DataReductionProxyIOData;
class DataReductionProxySettings;
-class DataReductionProxyStatisticsPrefs;
}
namespace net {
@@ -91,8 +89,8 @@ class AwBrowserContext : public content::BrowserContext,
data_reduction_proxy::DataReductionProxySettings*
GetDataReductionProxySettings();
- data_reduction_proxy::DataReductionProxyEventStore*
- GetDataReductionProxyEventStore();
+ data_reduction_proxy::DataReductionProxyIOData*
+ GetDataReductionProxyIOData();
AwURLRequestContextGetter* GetAwURLRequestContext();
@@ -148,15 +146,11 @@ class AwBrowserContext : public content::BrowserContext,
scoped_ptr<PrefService> user_pref_service_;
- scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator>
- data_reduction_proxy_configurator_;
- scoped_ptr<data_reduction_proxy::DataReductionProxyStatisticsPrefs>
- data_reduction_proxy_statistics_;
scoped_ptr<data_reduction_proxy::DataReductionProxySettings>
data_reduction_proxy_settings_;
- scoped_ptr<data_reduction_proxy::DataReductionProxyEventStore>
- data_reduction_proxy_event_store_;
scoped_ptr<AwSSLHostStateDelegate> ssl_host_state_delegate_;
+ scoped_ptr<data_reduction_proxy::DataReductionProxyIOData>
+ data_reduction_proxy_io_data_;
DISALLOW_COPY_AND_ASSIGN(AwBrowserContext);
};
« no previous file with comments | « no previous file | android_webview/browser/aw_browser_context.cc » ('j') | chrome/browser/io_thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698