OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_IMPL_H_ | 7 #ifndef CHROME_BROWSER_PROFILE_IMPL_H_ |
8 #define CHROME_BROWSER_PROFILE_IMPL_H_ | 8 #define CHROME_BROWSER_PROFILE_IMPL_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 scoped_refptr<PersonalDataManager> personal_data_manager_; | 227 scoped_refptr<PersonalDataManager> personal_data_manager_; |
228 scoped_ptr<PinnedTabService> pinned_tab_service_; | 228 scoped_ptr<PinnedTabService> pinned_tab_service_; |
229 scoped_refptr<BrowserFileSystemContext> browser_file_system_context_; | 229 scoped_refptr<BrowserFileSystemContext> browser_file_system_context_; |
230 scoped_ptr<BrowserSignin> browser_signin_; | 230 scoped_ptr<BrowserSignin> browser_signin_; |
231 bool history_service_created_; | 231 bool history_service_created_; |
232 bool favicon_service_created_; | 232 bool favicon_service_created_; |
233 bool created_web_data_service_; | 233 bool created_web_data_service_; |
234 bool created_password_store_; | 234 bool created_password_store_; |
235 bool created_download_manager_; | 235 bool created_download_manager_; |
236 bool created_theme_provider_; | 236 bool created_theme_provider_; |
| 237 bool clear_local_state_on_exit_; |
237 // Whether or not the last session exited cleanly. This is set only once. | 238 // Whether or not the last session exited cleanly. This is set only once. |
238 bool last_session_exited_cleanly_; | 239 bool last_session_exited_cleanly_; |
239 | 240 |
240 base::OneShotTimer<ProfileImpl> create_session_service_timer_; | 241 base::OneShotTimer<ProfileImpl> create_session_service_timer_; |
241 | 242 |
242 scoped_ptr<Profile> off_the_record_profile_; | 243 scoped_ptr<Profile> off_the_record_profile_; |
243 | 244 |
244 // See GetStartTime for details. | 245 // See GetStartTime for details. |
245 base::Time start_time_; | 246 base::Time start_time_; |
246 | 247 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 scoped_refptr<chromeos::ProxyConfigServiceImpl> | 282 scoped_refptr<chromeos::ProxyConfigServiceImpl> |
282 chromeos_proxy_config_service_impl_; | 283 chromeos_proxy_config_service_impl_; |
283 #endif | 284 #endif |
284 | 285 |
285 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 286 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
286 | 287 |
287 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 288 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
288 }; | 289 }; |
289 | 290 |
290 #endif // CHROME_BROWSER_PROFILE_IMPL_H_ | 291 #endif // CHROME_BROWSER_PROFILE_IMPL_H_ |
OLD | NEW |