summaryrefslogtreecommitdiffstats
path: root/android_webview/browser/aw_browser_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'android_webview/browser/aw_browser_context.h')
-rw-r--r--android_webview/browser/aw_browser_context.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/android_webview/browser/aw_browser_context.h b/android_webview/browser/aw_browser_context.h
index 7a008bf..ab0ebef 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);
};