| 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" |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/file_path.h" | 12 #include "base/file_path.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "base/synchronization/lock.h" | 16 #include "base/synchronization/lock.h" |
| 17 #include "chrome/browser/net/chrome_url_request_context.h" | 17 #include "chrome/browser/net/chrome_url_request_context.h" |
| 18 #include "chrome/browser/prefs/pref_member.h" | 18 #include "chrome/browser/prefs/pref_member.h" |
| 19 #include "content/browser/download/download_manager.h" |
| 19 #include "content/browser/resource_context.h" | 20 #include "content/browser/resource_context.h" |
| 20 #include "net/base/cookie_monster.h" | 21 #include "net/base/cookie_monster.h" |
| 21 | 22 |
| 22 class CommandLine; | 23 class CommandLine; |
| 23 class ChromeAppCacheService; | 24 class ChromeAppCacheService; |
| 24 class ChromeBlobStorageContext; | 25 class ChromeBlobStorageContext; |
| 25 class DesktopNotificationService; | 26 class DesktopNotificationService; |
| 26 class ExtensionInfoMap; | 27 class ExtensionInfoMap; |
| 27 class HostContentSettingsMap; | 28 class HostContentSettingsMap; |
| 28 class HostZoomMap; | 29 class HostZoomMap; |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 mutable scoped_ptr<net::ProxyService> proxy_service_; | 275 mutable scoped_ptr<net::ProxyService> proxy_service_; |
| 275 mutable scoped_ptr<net::URLRequestJobFactory> job_factory_; | 276 mutable scoped_ptr<net::URLRequestJobFactory> job_factory_; |
| 276 | 277 |
| 277 // Pointed to by ResourceContext. | 278 // Pointed to by ResourceContext. |
| 278 mutable scoped_refptr<webkit_database::DatabaseTracker> database_tracker_; | 279 mutable scoped_refptr<webkit_database::DatabaseTracker> database_tracker_; |
| 279 mutable scoped_refptr<ChromeAppCacheService> appcache_service_; | 280 mutable scoped_refptr<ChromeAppCacheService> appcache_service_; |
| 280 mutable scoped_refptr<ChromeBlobStorageContext> blob_storage_context_; | 281 mutable scoped_refptr<ChromeBlobStorageContext> blob_storage_context_; |
| 281 mutable scoped_refptr<fileapi::FileSystemContext> file_system_context_; | 282 mutable scoped_refptr<fileapi::FileSystemContext> file_system_context_; |
| 282 mutable scoped_refptr<quota::QuotaManager> quota_manager_; | 283 mutable scoped_refptr<quota::QuotaManager> quota_manager_; |
| 283 mutable scoped_refptr<HostZoomMap> host_zoom_map_; | 284 mutable scoped_refptr<HostZoomMap> host_zoom_map_; |
| 285 mutable DownloadManager::GetNextIdThunkType next_download_id_thunk_; |
| 284 | 286 |
| 285 // TODO(willchan): Remove from ResourceContext. | 287 // TODO(willchan): Remove from ResourceContext. |
| 286 mutable scoped_refptr<ExtensionInfoMap> extension_info_map_; | 288 mutable scoped_refptr<ExtensionInfoMap> extension_info_map_; |
| 287 mutable scoped_refptr<HostContentSettingsMap> host_content_settings_map_; | 289 mutable scoped_refptr<HostContentSettingsMap> host_content_settings_map_; |
| 288 mutable DesktopNotificationService* notification_service_; | 290 mutable DesktopNotificationService* notification_service_; |
| 289 mutable base::Callback<prerender::PrerenderManager*(void)> | 291 mutable base::Callback<prerender::PrerenderManager*(void)> |
| 290 prerender_manager_getter_; | 292 prerender_manager_getter_; |
| 291 | 293 |
| 292 mutable ResourceContext resource_context_; | 294 mutable ResourceContext resource_context_; |
| 293 | 295 |
| 294 // These are only valid in between LazyInitialize() and their accessor being | 296 // These are only valid in between LazyInitialize() and their accessor being |
| 295 // called. | 297 // called. |
| 296 mutable scoped_refptr<ChromeURLRequestContext> main_request_context_; | 298 mutable scoped_refptr<ChromeURLRequestContext> main_request_context_; |
| 297 mutable scoped_refptr<ChromeURLRequestContext> extensions_request_context_; | 299 mutable scoped_refptr<ChromeURLRequestContext> extensions_request_context_; |
| 298 // One AppRequestContext per isolated app. | 300 // One AppRequestContext per isolated app. |
| 299 mutable AppRequestContextMap app_request_context_map_; | 301 mutable AppRequestContextMap app_request_context_map_; |
| 300 | 302 |
| 301 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 303 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
| 302 }; | 304 }; |
| 303 | 305 |
| 304 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 306 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
| OLD | NEW |