| 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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 | 179 |
| 180 // Created on the UI thread, read on the IO thread during ProfileIOData lazy | 180 // Created on the UI thread, read on the IO thread during ProfileIOData lazy |
| 181 // initialization. | 181 // initialization. |
| 182 struct ProfileParams { | 182 struct ProfileParams { |
| 183 ProfileParams(); | 183 ProfileParams(); |
| 184 ~ProfileParams(); | 184 ~ProfileParams(); |
| 185 | 185 |
| 186 FilePath path; | 186 FilePath path; |
| 187 std::string accept_language; | 187 std::string accept_language; |
| 188 std::string accept_charset; | 188 std::string accept_charset; |
| 189 std::string referrer_charset; | |
| 190 IOThread* io_thread; | 189 IOThread* io_thread; |
| 191 scoped_refptr<CookieSettings> cookie_settings; | 190 scoped_refptr<CookieSettings> cookie_settings; |
| 192 scoped_refptr<net::SSLConfigService> ssl_config_service; | 191 scoped_refptr<net::SSLConfigService> ssl_config_service; |
| 193 scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate; | 192 scoped_refptr<net::CookieMonster::Delegate> cookie_monster_delegate; |
| 194 scoped_refptr<ExtensionInfoMap> extension_info_map; | 193 scoped_refptr<ExtensionInfoMap> extension_info_map; |
| 195 scoped_ptr<chrome_browser_net::ResourcePrefetchPredictorObserver> | 194 scoped_ptr<chrome_browser_net::ResourcePrefetchPredictorObserver> |
| 196 resource_prefetch_predictor_observer_; | 195 resource_prefetch_predictor_observer_; |
| 197 | 196 |
| 198 #if defined(ENABLE_NOTIFICATIONS) | 197 #if defined(ENABLE_NOTIFICATIONS) |
| 199 DesktopNotificationService* notification_service; | 198 DesktopNotificationService* notification_service; |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 | 428 |
| 430 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. | 429 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. |
| 431 bool initialized_on_UI_thread_; | 430 bool initialized_on_UI_thread_; |
| 432 | 431 |
| 433 bool is_incognito_; | 432 bool is_incognito_; |
| 434 | 433 |
| 435 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 434 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
| 436 }; | 435 }; |
| 437 | 436 |
| 438 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 437 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
| OLD | NEW |