| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
| 6 #define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 6 #define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 class HostContentSettingsMap; | 27 class HostContentSettingsMap; |
| 28 class HostZoomMap; | 28 class HostZoomMap; |
| 29 class IOThread; | 29 class IOThread; |
| 30 class Profile; | 30 class Profile; |
| 31 class ProtocolHandlerRegistry; | 31 class ProtocolHandlerRegistry; |
| 32 | 32 |
| 33 namespace fileapi { | 33 namespace fileapi { |
| 34 class FileSystemContext; | 34 class FileSystemContext; |
| 35 } // namespace fileapi | 35 } // namespace fileapi |
| 36 | 36 |
| 37 namespace media_stream { |
| 38 class MediaStreamManager; |
| 39 } // namespace media_stream |
| 40 |
| 37 namespace net { | 41 namespace net { |
| 38 class CookieStore; | 42 class CookieStore; |
| 39 class DnsCertProvenanceChecker; | 43 class DnsCertProvenanceChecker; |
| 40 class HttpTransactionFactory; | 44 class HttpTransactionFactory; |
| 41 class NetLog; | 45 class NetLog; |
| 42 class ProxyConfigService; | 46 class ProxyConfigService; |
| 43 class ProxyService; | 47 class ProxyService; |
| 44 class SSLConfigService; | 48 class SSLConfigService; |
| 45 class TransportSecurityState; | 49 class TransportSecurityState; |
| 46 } // namespace net | 50 } // namespace net |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 mutable scoped_ptr<net::ProxyService> proxy_service_; | 262 mutable scoped_ptr<net::ProxyService> proxy_service_; |
| 259 mutable scoped_ptr<net::URLRequestJobFactory> job_factory_; | 263 mutable scoped_ptr<net::URLRequestJobFactory> job_factory_; |
| 260 | 264 |
| 261 // Pointed to by ResourceContext. | 265 // Pointed to by ResourceContext. |
| 262 mutable scoped_refptr<webkit_database::DatabaseTracker> database_tracker_; | 266 mutable scoped_refptr<webkit_database::DatabaseTracker> database_tracker_; |
| 263 mutable scoped_refptr<ChromeAppCacheService> appcache_service_; | 267 mutable scoped_refptr<ChromeAppCacheService> appcache_service_; |
| 264 mutable scoped_refptr<ChromeBlobStorageContext> blob_storage_context_; | 268 mutable scoped_refptr<ChromeBlobStorageContext> blob_storage_context_; |
| 265 mutable scoped_refptr<fileapi::FileSystemContext> file_system_context_; | 269 mutable scoped_refptr<fileapi::FileSystemContext> file_system_context_; |
| 266 mutable scoped_refptr<quota::QuotaManager> quota_manager_; | 270 mutable scoped_refptr<quota::QuotaManager> quota_manager_; |
| 267 mutable scoped_refptr<HostZoomMap> host_zoom_map_; | 271 mutable scoped_refptr<HostZoomMap> host_zoom_map_; |
| 272 mutable scoped_ptr<media_stream::MediaStreamManager> media_stream_manager_; |
| 268 | 273 |
| 269 // TODO(willchan): Remove from ResourceContext. | 274 // TODO(willchan): Remove from ResourceContext. |
| 270 mutable scoped_refptr<ExtensionInfoMap> extension_info_map_; | 275 mutable scoped_refptr<ExtensionInfoMap> extension_info_map_; |
| 271 mutable scoped_refptr<HostContentSettingsMap> host_content_settings_map_; | 276 mutable scoped_refptr<HostContentSettingsMap> host_content_settings_map_; |
| 272 mutable DesktopNotificationService* notification_service_; | 277 mutable DesktopNotificationService* notification_service_; |
| 273 mutable base::Callback<prerender::PrerenderManager*(void)> | 278 mutable base::Callback<prerender::PrerenderManager*(void)> |
| 274 prerender_manager_getter_; | 279 prerender_manager_getter_; |
| 275 | 280 |
| 276 mutable ResourceContext resource_context_; | 281 mutable ResourceContext resource_context_; |
| 277 | 282 |
| 278 // These are only valid in between LazyInitialize() and their accessor being | 283 // These are only valid in between LazyInitialize() and their accessor being |
| 279 // called. | 284 // called. |
| 280 mutable scoped_refptr<ChromeURLRequestContext> main_request_context_; | 285 mutable scoped_refptr<ChromeURLRequestContext> main_request_context_; |
| 281 mutable scoped_refptr<ChromeURLRequestContext> extensions_request_context_; | 286 mutable scoped_refptr<ChromeURLRequestContext> extensions_request_context_; |
| 282 // One AppRequestContext per isolated app. | 287 // One AppRequestContext per isolated app. |
| 283 mutable AppRequestContextMap app_request_context_map_; | 288 mutable AppRequestContextMap app_request_context_map_; |
| 284 | 289 |
| 285 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 290 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
| 286 }; | 291 }; |
| 287 | 292 |
| 288 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 293 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
| OLD | NEW |