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

Unified Diff: android_webview/browser/aw_browser_context.h

Issue 412143009: Moved data reduction proxy initialization logic to ProfileImplIOData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from willchan and sgurun Created 6 years, 5 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 6f8e9fb2c2e496055fa6ce736d6db9e76d6d7fad..4ac5bb6e8daa658ae42234affb5edc502539dc3a 100644
--- a/android_webview/browser/aw_browser_context.h
+++ b/android_webview/browser/aw_browser_context.h
@@ -27,7 +27,6 @@ class WebContents;
}
namespace data_reduction_proxy {
-class DataReductionProxyAuthRequestHandler;
class DataReductionProxySettings;
}
@@ -39,9 +38,6 @@ namespace visitedlink {
class VisitedLinkMaster;
}
-using data_reduction_proxy::DataReductionProxyAuthRequestHandler;
-using data_reduction_proxy::DataReductionProxySettings;
-
namespace android_webview {
class AwFormDatabaseService;
@@ -86,10 +82,8 @@ class AwBrowserContext : public content::BrowserContext,
AwFormDatabaseService* GetFormDatabaseService();
- DataReductionProxySettings* GetDataReductionProxySettings();
-
- DataReductionProxyAuthRequestHandler*
- GetDataReductionProxyAuthRequestHandler();
+ data_reduction_proxy::DataReductionProxySettings*
+ GetDataReductionProxySettings();
void CreateUserPrefServiceIfNecessary();
@@ -135,9 +129,8 @@ class AwBrowserContext : public content::BrowserContext,
scoped_ptr<PrefService> user_pref_service_;
- scoped_ptr<DataReductionProxySettings> data_reduction_proxy_settings_;
- scoped_ptr<DataReductionProxyAuthRequestHandler>
- data_reduction_proxy_auth_request_handler_;
+ scoped_ptr<data_reduction_proxy::DataReductionProxySettings>
+ data_reduction_proxy_settings_;
DISALLOW_COPY_AND_ASSIGN(AwBrowserContext);
};
« 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