| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 scoped_ptr<ProfileSyncService> sync_service_; | 503 scoped_ptr<ProfileSyncService> sync_service_; |
| 504 | 504 |
| 505 ChromeURLRequestContextGetter* request_context_; | 505 ChromeURLRequestContextGetter* request_context_; |
| 506 | 506 |
| 507 ChromeURLRequestContextGetter* media_request_context_; | 507 ChromeURLRequestContextGetter* media_request_context_; |
| 508 | 508 |
| 509 ChromeURLRequestContextGetter* extensions_request_context_; | 509 ChromeURLRequestContextGetter* extensions_request_context_; |
| 510 | 510 |
| 511 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; | 511 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; |
| 512 | 512 |
| 513 Blacklist* blacklist_; | 513 scoped_ptr<Blacklist> blacklist_; |
| 514 | 514 |
| 515 scoped_refptr<DownloadManager> download_manager_; | 515 scoped_refptr<DownloadManager> download_manager_; |
| 516 scoped_refptr<HistoryService> history_service_; | 516 scoped_refptr<HistoryService> history_service_; |
| 517 scoped_refptr<FaviconService> favicon_service_; | 517 scoped_refptr<FaviconService> favicon_service_; |
| 518 scoped_refptr<WebDataService> web_data_service_; | 518 scoped_refptr<WebDataService> web_data_service_; |
| 519 scoped_refptr<PasswordStore> password_store_; | 519 scoped_refptr<PasswordStore> password_store_; |
| 520 scoped_refptr<SessionService> session_service_; | 520 scoped_refptr<SessionService> session_service_; |
| 521 scoped_ptr<BrowserThemeProvider> theme_provider_; | 521 scoped_ptr<BrowserThemeProvider> theme_provider_; |
| 522 scoped_refptr<WebKitContext> webkit_context_; | 522 scoped_refptr<WebKitContext> webkit_context_; |
| 523 scoped_ptr<DesktopNotificationService> desktop_notification_service_; | 523 scoped_ptr<DesktopNotificationService> desktop_notification_service_; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 }; | 555 }; |
| 556 | 556 |
| 557 // This struct is used to pass the spellchecker object through the notification | 557 // This struct is used to pass the spellchecker object through the notification |
| 558 // SPELLCHECKER_REINITIALIZED. This is used as the details for the notification | 558 // SPELLCHECKER_REINITIALIZED. This is used as the details for the notification |
| 559 // service. | 559 // service. |
| 560 struct SpellcheckerReinitializedDetails { | 560 struct SpellcheckerReinitializedDetails { |
| 561 scoped_refptr<SpellChecker> spellchecker; | 561 scoped_refptr<SpellChecker> spellchecker; |
| 562 }; | 562 }; |
| 563 | 563 |
| 564 #endif // CHROME_BROWSER_PROFILE_H_ | 564 #endif // CHROME_BROWSER_PROFILE_H_ |
| OLD | NEW |