| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 scoped_refptr<HistoryService> history_service_; | 260 scoped_refptr<HistoryService> history_service_; |
| 261 scoped_ptr<FaviconService> favicon_service_; | 261 scoped_ptr<FaviconService> favicon_service_; |
| 262 scoped_ptr<AutocompleteClassifier> autocomplete_classifier_; | 262 scoped_ptr<AutocompleteClassifier> autocomplete_classifier_; |
| 263 scoped_refptr<history::ShortcutsBackend> shortcuts_backend_; | 263 scoped_refptr<history::ShortcutsBackend> shortcuts_backend_; |
| 264 scoped_refptr<WebDataService> web_data_service_; | 264 scoped_refptr<WebDataService> web_data_service_; |
| 265 scoped_refptr<PasswordStore> password_store_; | 265 scoped_refptr<PasswordStore> password_store_; |
| 266 scoped_refptr<WebKitContext> webkit_context_; | 266 scoped_refptr<WebKitContext> webkit_context_; |
| 267 scoped_refptr<fileapi::FileSystemContext> file_system_context_; | 267 scoped_refptr<fileapi::FileSystemContext> file_system_context_; |
| 268 scoped_refptr<quota::QuotaManager> quota_manager_; | 268 scoped_refptr<quota::QuotaManager> quota_manager_; |
| 269 scoped_ptr<NetworkActionPredictor> network_action_predictor_; | 269 scoped_ptr<NetworkActionPredictor> network_action_predictor_; |
| 270 bool profile_sync_service_created_; |
| 270 bool history_service_created_; | 271 bool history_service_created_; |
| 271 bool favicon_service_created_; | 272 bool favicon_service_created_; |
| 272 bool created_web_data_service_; | 273 bool created_web_data_service_; |
| 273 bool created_password_store_; | 274 bool created_password_store_; |
| 274 bool clear_local_state_on_exit_; | 275 bool clear_local_state_on_exit_; |
| 275 // Whether or not the last session exited cleanly. This is set only once. | 276 // Whether or not the last session exited cleanly. This is set only once. |
| 276 bool last_session_exited_cleanly_; | 277 bool last_session_exited_cleanly_; |
| 277 | 278 |
| 278 base::OneShotTimer<ProfileImpl> create_session_service_timer_; | 279 base::OneShotTimer<ProfileImpl> create_session_service_timer_; |
| 279 | 280 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 Profile::Delegate* delegate_; | 318 Profile::Delegate* delegate_; |
| 318 | 319 |
| 319 chrome_browser_net::Predictor* predictor_; | 320 chrome_browser_net::Predictor* predictor_; |
| 320 | 321 |
| 321 bool session_restore_enabled_; | 322 bool session_restore_enabled_; |
| 322 | 323 |
| 323 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 324 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 324 }; | 325 }; |
| 325 | 326 |
| 326 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 327 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |