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

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 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..11ba3b26281961f3c00cf7b3b5d2bd1919f56fca 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,7 +38,6 @@ namespace visitedlink {
class VisitedLinkMaster;
}
-using data_reduction_proxy::DataReductionProxyAuthRequestHandler;
using data_reduction_proxy::DataReductionProxySettings;
namespace android_webview {
@@ -88,9 +86,6 @@ class AwBrowserContext : public content::BrowserContext,
DataReductionProxySettings* GetDataReductionProxySettings();
- DataReductionProxyAuthRequestHandler*
- GetDataReductionProxyAuthRequestHandler();
-
void CreateUserPrefServiceIfNecessary();
// content::BrowserContext implementation.
@@ -136,8 +131,6 @@ 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_;
DISALLOW_COPY_AND_ASSIGN(AwBrowserContext);
};

Powered by Google App Engine
This is Rietveld 408576698