| 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 10 matching lines...) Expand all Loading... |
| 21 class GURL; | 21 class GURL; |
| 22 class PrefService; | 22 class PrefService; |
| 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 DataReductionProxySettings; | 32 class DataReductionProxySettings; |
| 32 } | 33 } |
| 33 | 34 |
| 34 namespace net { | 35 namespace net { |
| 35 class CookieStore; | 36 class CookieStore; |
| 36 } | 37 } |
| 37 | 38 |
| 38 namespace visitedlink { | 39 namespace visitedlink { |
| 39 class VisitedLinkMaster; | 40 class VisitedLinkMaster; |
| 40 } | 41 } |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 scoped_refptr<AwQuotaManagerBridge> quota_manager_bridge_; | 125 scoped_refptr<AwQuotaManagerBridge> quota_manager_bridge_; |
| 125 scoped_ptr<AwFormDatabaseService> form_database_service_; | 126 scoped_ptr<AwFormDatabaseService> form_database_service_; |
| 126 | 127 |
| 127 AwDownloadManagerDelegate download_manager_delegate_; | 128 AwDownloadManagerDelegate download_manager_delegate_; |
| 128 | 129 |
| 129 scoped_ptr<visitedlink::VisitedLinkMaster> visitedlink_master_; | 130 scoped_ptr<visitedlink::VisitedLinkMaster> visitedlink_master_; |
| 130 scoped_ptr<content::ResourceContext> resource_context_; | 131 scoped_ptr<content::ResourceContext> resource_context_; |
| 131 | 132 |
| 132 scoped_ptr<PrefService> user_pref_service_; | 133 scoped_ptr<PrefService> user_pref_service_; |
| 133 | 134 |
| 135 scoped_ptr<data_reduction_proxy::DataReductionProxyConfigurator> |
| 136 data_reduction_proxy_configurator_; |
| 134 scoped_ptr<data_reduction_proxy::DataReductionProxySettings> | 137 scoped_ptr<data_reduction_proxy::DataReductionProxySettings> |
| 135 data_reduction_proxy_settings_; | 138 data_reduction_proxy_settings_; |
| 136 | 139 |
| 137 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); | 140 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); |
| 138 }; | 141 }; |
| 139 | 142 |
| 140 } // namespace android_webview | 143 } // namespace android_webview |
| 141 | 144 |
| 142 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ | 145 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ |
| OLD | NEW |