| 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 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 namespace content { | 24 namespace content { |
| 25 class ResourceContext; | 25 class ResourceContext; |
| 26 class SSLHostStateDelegate; | 26 class SSLHostStateDelegate; |
| 27 class WebContents; | 27 class WebContents; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace data_reduction_proxy { | 30 namespace data_reduction_proxy { |
| 31 class DataReductionProxyConfigurator; | 31 class DataReductionProxyConfigurator; |
| 32 class DataReductionProxySettings; | 32 class DataReductionProxySettings; |
| 33 class DataReductionProxyStatisticsPrefs; |
| 33 } | 34 } |
| 34 | 35 |
| 35 namespace net { | 36 namespace net { |
| 36 class CookieStore; | 37 class CookieStore; |
| 37 } | 38 } |
| 38 | 39 |
| 39 namespace visitedlink { | 40 namespace visitedlink { |
| 40 class VisitedLinkMaster; | 41 class VisitedLinkMaster; |
| 41 } | 42 } |
| 42 | 43 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 130 |
| 130 scoped_ptr<visitedlink::VisitedLinkMaster> visitedlink_master_; | 131 scoped_ptr<visitedlink::VisitedLinkMaster> visitedlink_master_; |
| 131 scoped_ptr<content::ResourceContext> resource_context_; | 132 scoped_ptr<content::ResourceContext> resource_context_; |
| 132 | 133 |
| 133 scoped_ptr<PrefService> user_pref_service_; | 134 scoped_ptr<PrefService> user_pref_service_; |
| 134 | 135 |
| 135 scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator> | 136 scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator> |
| 136 data_reduction_proxy_configurator_; | 137 data_reduction_proxy_configurator_; |
| 137 scoped_ptr<data_reduction_proxy::DataReductionProxySettings> | 138 scoped_ptr<data_reduction_proxy::DataReductionProxySettings> |
| 138 data_reduction_proxy_settings_; | 139 data_reduction_proxy_settings_; |
| 140 scoped_ptr<data_reduction_proxy::DataReductionProxyStatisticsPrefs> |
| 141 data_reduction_proxy_statistics_prefs_; |
| 139 | 142 |
| 140 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); | 143 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); |
| 141 }; | 144 }; |
| 142 | 145 |
| 143 } // namespace android_webview | 146 } // namespace android_webview |
| 144 | 147 |
| 145 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ | 148 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ |
| OLD | NEW |