OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // This class gathers state related to a single user profile. | 5 // This class gathers state related to a single user profile. |
6 | 6 |
7 #ifndef CHROME_BROWSER_PROFILE_H_ | 7 #ifndef CHROME_BROWSER_PROFILE_H_ |
8 #define CHROME_BROWSER_PROFILE_H_ | 8 #define CHROME_BROWSER_PROFILE_H_ |
9 | 9 |
10 #include <set> | 10 #include <set> |
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
495 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; | 495 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; |
496 | 496 |
497 Blacklist* blacklist_; | 497 Blacklist* blacklist_; |
498 | 498 |
499 scoped_refptr<DownloadManager> download_manager_; | 499 scoped_refptr<DownloadManager> download_manager_; |
500 scoped_refptr<HistoryService> history_service_; | 500 scoped_refptr<HistoryService> history_service_; |
501 scoped_refptr<FaviconService> favicon_service_; | 501 scoped_refptr<FaviconService> favicon_service_; |
502 scoped_refptr<WebDataService> web_data_service_; | 502 scoped_refptr<WebDataService> web_data_service_; |
503 scoped_refptr<PasswordStore> password_store_; | 503 scoped_refptr<PasswordStore> password_store_; |
504 scoped_refptr<SessionService> session_service_; | 504 scoped_refptr<SessionService> session_service_; |
505 scoped_refptr<BrowserThemeProvider> theme_provider_; | 505 scoped_ptr<BrowserThemeProvider> theme_provider_; |
506 scoped_refptr<WebKitContext> webkit_context_; | 506 scoped_refptr<WebKitContext> webkit_context_; |
507 bool history_service_created_; | 507 bool history_service_created_; |
508 bool favicon_service_created_; | 508 bool favicon_service_created_; |
509 bool created_web_data_service_; | 509 bool created_web_data_service_; |
510 bool created_password_store_; | 510 bool created_password_store_; |
511 bool created_download_manager_; | 511 bool created_download_manager_; |
512 bool created_theme_provider_; | 512 bool created_theme_provider_; |
513 // Whether or not the last session exited cleanly. This is set only once. | 513 // Whether or not the last session exited cleanly. This is set only once. |
514 bool last_session_exited_cleanly_; | 514 bool last_session_exited_cleanly_; |
515 | 515 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
551 #endif | 551 #endif |
552 | 552 |
553 // This struct is used to pass the spellchecker object through the notification | 553 // This struct is used to pass the spellchecker object through the notification |
554 // NOTIFY_SPELLCHECKER_REINITIALIZED. This is used as the details for the | 554 // NOTIFY_SPELLCHECKER_REINITIALIZED. This is used as the details for the |
555 // notification service. | 555 // notification service. |
556 struct SpellcheckerReinitializedDetails { | 556 struct SpellcheckerReinitializedDetails { |
557 scoped_refptr<SpellChecker> spellchecker; | 557 scoped_refptr<SpellChecker> spellchecker; |
558 }; | 558 }; |
559 | 559 |
560 #endif // CHROME_BROWSER_PROFILE_H_ | 560 #endif // CHROME_BROWSER_PROFILE_H_ |
OLD | NEW |