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

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: nit Created 6 years, 4 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
« no previous file with comments | « no previous file | android_webview/browser/aw_browser_context.cc » ('j') | no next file with comments »
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 7a008bf290c99e250ed46ba54d231468348e551b..ab0ebef2106049545217f6fe05710f63351c47d7 100644
--- a/android_webview/browser/aw_browser_context.h
+++ b/android_webview/browser/aw_browser_context.h
@@ -28,7 +28,6 @@ class WebContents;
}
namespace data_reduction_proxy {
-class DataReductionProxyAuthRequestHandler;
class DataReductionProxySettings;
}
@@ -40,9 +39,6 @@ namespace visitedlink {
class VisitedLinkMaster;
}
-using data_reduction_proxy::DataReductionProxyAuthRequestHandler;
-using data_reduction_proxy::DataReductionProxySettings;
-
namespace android_webview {
class AwFormDatabaseService;
@@ -87,10 +83,8 @@ class AwBrowserContext : public content::BrowserContext,
AwFormDatabaseService* GetFormDatabaseService();
- DataReductionProxySettings* GetDataReductionProxySettings();
-
- DataReductionProxyAuthRequestHandler*
- GetDataReductionProxyAuthRequestHandler();
+ data_reduction_proxy::DataReductionProxySettings*
+ GetDataReductionProxySettings();
void CreateUserPrefServiceIfNecessary();
@@ -137,9 +131,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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698