| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 geolocation_permission_context_; | 217 geolocation_permission_context_; |
| 218 scoped_refptr<content::SpeechRecognitionPreferences> | 218 scoped_refptr<content::SpeechRecognitionPreferences> |
| 219 speech_recognition_preferences_; | 219 speech_recognition_preferences_; |
| 220 scoped_ptr<GAIAInfoUpdateService> gaia_info_update_service_; | 220 scoped_ptr<GAIAInfoUpdateService> gaia_info_update_service_; |
| 221 scoped_refptr<HistoryService> history_service_; | 221 scoped_refptr<HistoryService> history_service_; |
| 222 scoped_ptr<FaviconService> favicon_service_; | 222 scoped_ptr<FaviconService> favicon_service_; |
| 223 scoped_ptr<AutocompleteClassifier> autocomplete_classifier_; | 223 scoped_ptr<AutocompleteClassifier> autocomplete_classifier_; |
| 224 scoped_refptr<history::ShortcutsBackend> shortcuts_backend_; | 224 scoped_refptr<history::ShortcutsBackend> shortcuts_backend_; |
| 225 bool history_service_created_; | 225 bool history_service_created_; |
| 226 bool favicon_service_created_; | 226 bool favicon_service_created_; |
| 227 bool clear_local_state_on_exit_; | |
| 228 | 227 |
| 229 // Whether or not the last session exited cleanly. This is set only once. | 228 // Whether or not the last session exited cleanly. This is set only once. |
| 230 bool last_session_exited_cleanly_; | 229 bool last_session_exited_cleanly_; |
| 231 | 230 |
| 232 #if defined(ENABLE_SESSION_SERVICE) | 231 #if defined(ENABLE_SESSION_SERVICE) |
| 233 base::OneShotTimer<ProfileImpl> create_session_service_timer_; | 232 base::OneShotTimer<ProfileImpl> create_session_service_timer_; |
| 234 #endif | 233 #endif |
| 235 | 234 |
| 236 scoped_ptr<Profile> off_the_record_profile_; | 235 scoped_ptr<Profile> off_the_record_profile_; |
| 237 | 236 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 268 Profile::Delegate* delegate_; | 267 Profile::Delegate* delegate_; |
| 269 | 268 |
| 270 chrome_browser_net::Predictor* predictor_; | 269 chrome_browser_net::Predictor* predictor_; |
| 271 | 270 |
| 272 bool session_restore_enabled_; | 271 bool session_restore_enabled_; |
| 273 | 272 |
| 274 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 273 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 275 }; | 274 }; |
| 276 | 275 |
| 277 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 276 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |