| 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 // 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_PROFILES_PROFILE_IMPL_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 geolocation_permission_context_; | 223 geolocation_permission_context_; |
| 224 scoped_refptr<content::SpeechRecognitionPreferences> | 224 scoped_refptr<content::SpeechRecognitionPreferences> |
| 225 speech_recognition_preferences_; | 225 speech_recognition_preferences_; |
| 226 scoped_ptr<GAIAInfoUpdateService> gaia_info_update_service_; | 226 scoped_ptr<GAIAInfoUpdateService> gaia_info_update_service_; |
| 227 scoped_refptr<HistoryService> history_service_; | 227 scoped_refptr<HistoryService> history_service_; |
| 228 scoped_ptr<FaviconService> favicon_service_; | 228 scoped_ptr<FaviconService> favicon_service_; |
| 229 scoped_ptr<AutocompleteClassifier> autocomplete_classifier_; | 229 scoped_ptr<AutocompleteClassifier> autocomplete_classifier_; |
| 230 scoped_refptr<history::ShortcutsBackend> shortcuts_backend_; | 230 scoped_refptr<history::ShortcutsBackend> shortcuts_backend_; |
| 231 bool history_service_created_; | 231 bool history_service_created_; |
| 232 bool favicon_service_created_; | 232 bool favicon_service_created_; |
| 233 bool clear_local_state_on_exit_; | |
| 234 | 233 |
| 235 // Whether or not the last session exited cleanly. This is set only once. | 234 // Whether or not the last session exited cleanly. This is set only once. |
| 236 bool last_session_exited_cleanly_; | 235 bool last_session_exited_cleanly_; |
| 237 | 236 |
| 238 #if defined(ENABLE_SESSION_SERVICE) | 237 #if defined(ENABLE_SESSION_SERVICE) |
| 239 base::OneShotTimer<ProfileImpl> create_session_service_timer_; | 238 base::OneShotTimer<ProfileImpl> create_session_service_timer_; |
| 240 #endif | 239 #endif |
| 241 | 240 |
| 242 scoped_ptr<Profile> off_the_record_profile_; | 241 scoped_ptr<Profile> off_the_record_profile_; |
| 243 | 242 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 274 Profile::Delegate* delegate_; | 273 Profile::Delegate* delegate_; |
| 275 | 274 |
| 276 chrome_browser_net::Predictor* predictor_; | 275 chrome_browser_net::Predictor* predictor_; |
| 277 | 276 |
| 278 bool session_restore_enabled_; | 277 bool session_restore_enabled_; |
| 279 | 278 |
| 280 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 279 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 281 }; | 280 }; |
| 282 | 281 |
| 283 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 282 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |