| 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 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 <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 // initialization. | 135 // initialization. |
| 136 struct ProfileParams { | 136 struct ProfileParams { |
| 137 ProfileParams(); | 137 ProfileParams(); |
| 138 ~ProfileParams(); | 138 ~ProfileParams(); |
| 139 | 139 |
| 140 FilePath path; | 140 FilePath path; |
| 141 bool is_incognito; | 141 bool is_incognito; |
| 142 bool clear_local_state_on_exit; | 142 bool clear_local_state_on_exit; |
| 143 std::string accept_language; | 143 std::string accept_language; |
| 144 std::string accept_charset; | 144 std::string accept_charset; |
| 145 std::string referrer_charset; | 145 std::string default_charset; |
| 146 IOThread* io_thread; | 146 IOThread* io_thread; |
| 147 scoped_refptr<AudioManager> audio_manager; | 147 scoped_refptr<AudioManager> audio_manager; |
| 148 scoped_refptr<HostContentSettingsMap> host_content_settings_map; | 148 scoped_refptr<HostContentSettingsMap> host_content_settings_map; |
| 149 scoped_refptr<CookieSettings> cookie_settings; | 149 scoped_refptr<CookieSettings> cookie_settings; |
| 150 scoped_refptr<content::HostZoomMap> host_zoom_map; | 150 scoped_refptr<content::HostZoomMap> host_zoom_map; |
| 151 scoped_refptr<net::SSLConfigService> ssl_config_service; | 151 scoped_refptr<net::SSLConfigService> ssl_config_service; |
| 152 scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate; | 152 scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate; |
| 153 scoped_refptr<webkit_database::DatabaseTracker> database_tracker; | 153 scoped_refptr<webkit_database::DatabaseTracker> database_tracker; |
| 154 scoped_refptr<ChromeAppCacheService> appcache_service; | 154 scoped_refptr<ChromeAppCacheService> appcache_service; |
| 155 scoped_refptr<ChromeBlobStorageContext> blob_storage_context; | 155 scoped_refptr<ChromeBlobStorageContext> blob_storage_context; |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 // One AppRequestContext per isolated app. | 305 // One AppRequestContext per isolated app. |
| 306 mutable AppRequestContextMap app_request_context_map_; | 306 mutable AppRequestContextMap app_request_context_map_; |
| 307 | 307 |
| 308 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. | 308 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. |
| 309 bool initialized_on_UI_thread_; | 309 bool initialized_on_UI_thread_; |
| 310 | 310 |
| 311 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 311 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
| 312 }; | 312 }; |
| 313 | 313 |
| 314 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 314 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
| OLD | NEW |