| 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 24 matching lines...) Expand all Loading... |
| 35 } // namespace fileapi | 35 } // namespace fileapi |
| 36 | 36 |
| 37 namespace net { | 37 namespace net { |
| 38 class CookieStore; | 38 class CookieStore; |
| 39 class DnsCertProvenanceChecker; | 39 class DnsCertProvenanceChecker; |
| 40 class HttpTransactionFactory; | 40 class HttpTransactionFactory; |
| 41 class NetLog; | 41 class NetLog; |
| 42 class OriginBoundCertService; | 42 class OriginBoundCertService; |
| 43 class ProxyConfigService; | 43 class ProxyConfigService; |
| 44 class ProxyService; | 44 class ProxyService; |
| 45 class SpdyConfigService; |
| 45 class SSLConfigService; | 46 class SSLConfigService; |
| 46 class TransportSecurityState; | 47 class TransportSecurityState; |
| 47 } // namespace net | 48 } // namespace net |
| 48 | 49 |
| 49 namespace prerender { | 50 namespace prerender { |
| 50 class PrerenderManager; | 51 class PrerenderManager; |
| 51 }; // namespace prerender | 52 }; // namespace prerender |
| 52 | 53 |
| 53 namespace quota { | 54 namespace quota { |
| 54 class QuotaManager; | 55 class QuotaManager; |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 131 |
| 131 bool is_incognito; | 132 bool is_incognito; |
| 132 bool clear_local_state_on_exit; | 133 bool clear_local_state_on_exit; |
| 133 std::string accept_language; | 134 std::string accept_language; |
| 134 std::string accept_charset; | 135 std::string accept_charset; |
| 135 std::string referrer_charset; | 136 std::string referrer_charset; |
| 136 IOThread* io_thread; | 137 IOThread* io_thread; |
| 137 scoped_refptr<HostContentSettingsMap> host_content_settings_map; | 138 scoped_refptr<HostContentSettingsMap> host_content_settings_map; |
| 138 scoped_refptr<HostZoomMap> host_zoom_map; | 139 scoped_refptr<HostZoomMap> host_zoom_map; |
| 139 scoped_refptr<net::TransportSecurityState> transport_security_state; | 140 scoped_refptr<net::TransportSecurityState> transport_security_state; |
| 141 scoped_refptr<net::SpdyConfigService> spdy_config_service; |
| 140 scoped_refptr<net::SSLConfigService> ssl_config_service; | 142 scoped_refptr<net::SSLConfigService> ssl_config_service; |
| 141 scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate; | 143 scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate; |
| 142 scoped_refptr<webkit_database::DatabaseTracker> database_tracker; | 144 scoped_refptr<webkit_database::DatabaseTracker> database_tracker; |
| 143 scoped_refptr<ChromeAppCacheService> appcache_service; | 145 scoped_refptr<ChromeAppCacheService> appcache_service; |
| 144 scoped_refptr<ChromeBlobStorageContext> blob_storage_context; | 146 scoped_refptr<ChromeBlobStorageContext> blob_storage_context; |
| 145 scoped_refptr<fileapi::FileSystemContext> file_system_context; | 147 scoped_refptr<fileapi::FileSystemContext> file_system_context; |
| 146 scoped_refptr<quota::QuotaManager> quota_manager; | 148 scoped_refptr<quota::QuotaManager> quota_manager; |
| 147 scoped_refptr<ExtensionInfoMap> extension_info_map; | 149 scoped_refptr<ExtensionInfoMap> extension_info_map; |
| 148 DesktopNotificationService* notification_service; | 150 DesktopNotificationService* notification_service; |
| 149 base::Callback<prerender::PrerenderManager*(void)> prerender_manager_getter; | 151 base::Callback<prerender::PrerenderManager*(void)> prerender_manager_getter; |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 // called. | 290 // called. |
| 289 mutable scoped_refptr<ChromeURLRequestContext> main_request_context_; | 291 mutable scoped_refptr<ChromeURLRequestContext> main_request_context_; |
| 290 mutable scoped_refptr<ChromeURLRequestContext> extensions_request_context_; | 292 mutable scoped_refptr<ChromeURLRequestContext> extensions_request_context_; |
| 291 // One AppRequestContext per isolated app. | 293 // One AppRequestContext per isolated app. |
| 292 mutable AppRequestContextMap app_request_context_map_; | 294 mutable AppRequestContextMap app_request_context_map_; |
| 293 | 295 |
| 294 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 296 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
| 295 }; | 297 }; |
| 296 | 298 |
| 297 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 299 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
| OLD | NEW |