OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ |
6 #define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "android_webview/browser/aw_download_manager_delegate.h" | 10 #include "android_webview/browser/aw_download_manager_delegate.h" |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 AwQuotaManagerBridge* GetQuotaManagerBridge(); | 87 AwQuotaManagerBridge* GetQuotaManagerBridge(); |
88 | 88 |
89 AwFormDatabaseService* GetFormDatabaseService(); | 89 AwFormDatabaseService* GetFormDatabaseService(); |
90 | 90 |
91 data_reduction_proxy::DataReductionProxySettings* | 91 data_reduction_proxy::DataReductionProxySettings* |
92 GetDataReductionProxySettings(); | 92 GetDataReductionProxySettings(); |
93 | 93 |
94 data_reduction_proxy::DataReductionProxyEventStore* | 94 data_reduction_proxy::DataReductionProxyEventStore* |
95 GetDataReductionProxyEventStore(); | 95 GetDataReductionProxyEventStore(); |
96 | 96 |
| 97 data_reduction_proxy::DataReductionProxyConfigurator* |
| 98 GetDataReductionProxyConfigurator(); |
| 99 |
97 AwURLRequestContextGetter* GetAwURLRequestContext(); | 100 AwURLRequestContextGetter* GetAwURLRequestContext(); |
98 | 101 |
99 void CreateUserPrefServiceIfNecessary(); | 102 void CreateUserPrefServiceIfNecessary(); |
100 | 103 |
101 // content::BrowserContext implementation. | 104 // content::BrowserContext implementation. |
102 scoped_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate( | 105 scoped_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate( |
103 const base::FilePath& partition_path) override; | 106 const base::FilePath& partition_path) override; |
104 virtual base::FilePath GetPath() const override; | 107 virtual base::FilePath GetPath() const override; |
105 virtual bool IsOffTheRecord() const override; | 108 virtual bool IsOffTheRecord() const override; |
106 virtual net::URLRequestContextGetter* GetRequestContext() override; | 109 virtual net::URLRequestContextGetter* GetRequestContext() override; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 scoped_ptr<data_reduction_proxy::DataReductionProxyEventStore> | 160 scoped_ptr<data_reduction_proxy::DataReductionProxyEventStore> |
158 data_reduction_proxy_event_store_; | 161 data_reduction_proxy_event_store_; |
159 scoped_ptr<AwSSLHostStateDelegate> ssl_host_state_delegate_; | 162 scoped_ptr<AwSSLHostStateDelegate> ssl_host_state_delegate_; |
160 | 163 |
161 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); | 164 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); |
162 }; | 165 }; |
163 | 166 |
164 } // namespace android_webview | 167 } // namespace android_webview |
165 | 168 |
166 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ | 169 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ |
OLD | NEW |