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 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
493 strict_transport_security_state_; | 493 strict_transport_security_state_; |
494 scoped_refptr<StrictTransportSecurityPersister> | 494 scoped_refptr<StrictTransportSecurityPersister> |
495 strict_transport_security_persister_; | 495 strict_transport_security_persister_; |
496 scoped_ptr<PrefService> prefs_; | 496 scoped_ptr<PrefService> prefs_; |
497 scoped_refptr<ThumbnailStore> thumbnail_store_; | 497 scoped_refptr<ThumbnailStore> thumbnail_store_; |
498 scoped_ptr<TemplateURLFetcher> template_url_fetcher_; | 498 scoped_ptr<TemplateURLFetcher> template_url_fetcher_; |
499 scoped_ptr<TemplateURLModel> template_url_model_; | 499 scoped_ptr<TemplateURLModel> template_url_model_; |
500 scoped_ptr<BookmarkModel> bookmark_bar_model_; | 500 scoped_ptr<BookmarkModel> bookmark_bar_model_; |
501 scoped_refptr<WebResourceService> web_resource_service_; | 501 scoped_refptr<WebResourceService> web_resource_service_; |
502 | 502 |
503 #if defined(BROWSER_SYNC) | |
504 scoped_ptr<ProfileSyncService> sync_service_; | 503 scoped_ptr<ProfileSyncService> sync_service_; |
505 #endif | |
506 | 504 |
507 ChromeURLRequestContextGetter* request_context_; | 505 ChromeURLRequestContextGetter* request_context_; |
508 | 506 |
509 ChromeURLRequestContextGetter* media_request_context_; | 507 ChromeURLRequestContextGetter* media_request_context_; |
510 | 508 |
511 ChromeURLRequestContextGetter* extensions_request_context_; | 509 ChromeURLRequestContextGetter* extensions_request_context_; |
512 | 510 |
513 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; | 511 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; |
514 | 512 |
515 Blacklist* blacklist_; | 513 Blacklist* blacklist_; |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
557 }; | 555 }; |
558 | 556 |
559 // 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 |
560 // SPELLCHECKER_REINITIALIZED. This is used as the details for the notification | 558 // SPELLCHECKER_REINITIALIZED. This is used as the details for the notification |
561 // service. | 559 // service. |
562 struct SpellcheckerReinitializedDetails { | 560 struct SpellcheckerReinitializedDetails { |
563 scoped_refptr<SpellChecker> spellchecker; | 561 scoped_refptr<SpellChecker> spellchecker; |
564 }; | 562 }; |
565 | 563 |
566 #endif // CHROME_BROWSER_PROFILE_H_ | 564 #endif // CHROME_BROWSER_PROFILE_H_ |
OLD | NEW |