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" |
| 11 #include "android_webview/browser/aw_ssl_host_state_delegate.h" |
11 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
13 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
14 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
15 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
16 #include "components/visitedlink/browser/visitedlink_delegate.h" | 17 #include "components/visitedlink/browser/visitedlink_delegate.h" |
17 #include "content/public/browser/browser_context.h" | 18 #include "content/public/browser/browser_context.h" |
18 #include "content/public/browser/content_browser_client.h" | 19 #include "content/public/browser/content_browser_client.h" |
19 #include "net/url_request/url_request_job_factory.h" | 20 #include "net/url_request/url_request_job_factory.h" |
20 | 21 |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 scoped_ptr<PrefService> user_pref_service_; | 149 scoped_ptr<PrefService> user_pref_service_; |
149 | 150 |
150 scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator> | 151 scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator> |
151 data_reduction_proxy_configurator_; | 152 data_reduction_proxy_configurator_; |
152 scoped_ptr<data_reduction_proxy::DataReductionProxyStatisticsPrefs> | 153 scoped_ptr<data_reduction_proxy::DataReductionProxyStatisticsPrefs> |
153 data_reduction_proxy_statistics_; | 154 data_reduction_proxy_statistics_; |
154 scoped_ptr<data_reduction_proxy::DataReductionProxySettings> | 155 scoped_ptr<data_reduction_proxy::DataReductionProxySettings> |
155 data_reduction_proxy_settings_; | 156 data_reduction_proxy_settings_; |
156 scoped_ptr<data_reduction_proxy::DataReductionProxyEventStore> | 157 scoped_ptr<data_reduction_proxy::DataReductionProxyEventStore> |
157 data_reduction_proxy_event_store_; | 158 data_reduction_proxy_event_store_; |
| 159 scoped_ptr<AwSSLHostStateDelegate> ssl_host_state_delegate_; |
158 | 160 |
159 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); | 161 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); |
160 }; | 162 }; |
161 | 163 |
162 } // namespace android_webview | 164 } // namespace android_webview |
163 | 165 |
164 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ | 166 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ |
OLD | NEW |