| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 scoped_ptr<AutocompleteClassifier> autocomplete_classifier_; | 240 scoped_ptr<AutocompleteClassifier> autocomplete_classifier_; |
| 241 scoped_refptr<WebDataService> web_data_service_; | 241 scoped_refptr<WebDataService> web_data_service_; |
| 242 scoped_refptr<PasswordStore> password_store_; | 242 scoped_refptr<PasswordStore> password_store_; |
| 243 scoped_refptr<SessionService> session_service_; | 243 scoped_refptr<SessionService> session_service_; |
| 244 scoped_refptr<WebKitContext> webkit_context_; | 244 scoped_refptr<WebKitContext> webkit_context_; |
| 245 scoped_ptr<DesktopNotificationService> desktop_notification_service_; | 245 scoped_ptr<DesktopNotificationService> desktop_notification_service_; |
| 246 scoped_ptr<BackgroundContentsService> background_contents_service_; | 246 scoped_ptr<BackgroundContentsService> background_contents_service_; |
| 247 scoped_ptr<BackgroundModeManager> background_mode_manager_; | 247 scoped_ptr<BackgroundModeManager> background_mode_manager_; |
| 248 scoped_ptr<StatusTray> status_tray_; | 248 scoped_ptr<StatusTray> status_tray_; |
| 249 scoped_refptr<PersonalDataManager> personal_data_manager_; | 249 scoped_refptr<PersonalDataManager> personal_data_manager_; |
| 250 scoped_ptr<PinnedTabService> pinned_tab_service_; |
| 250 scoped_refptr<fileapi::FileSystemContext> file_system_context_; | 251 scoped_refptr<fileapi::FileSystemContext> file_system_context_; |
| 251 scoped_ptr<BrowserSignin> browser_signin_; | 252 scoped_ptr<BrowserSignin> browser_signin_; |
| 252 bool history_service_created_; | 253 bool history_service_created_; |
| 253 bool favicon_service_created_; | 254 bool favicon_service_created_; |
| 254 bool created_web_data_service_; | 255 bool created_web_data_service_; |
| 255 bool created_password_store_; | 256 bool created_password_store_; |
| 256 bool created_download_manager_; | 257 bool created_download_manager_; |
| 257 bool clear_local_state_on_exit_; | 258 bool clear_local_state_on_exit_; |
| 258 // Whether or not the last session exited cleanly. This is set only once. | 259 // Whether or not the last session exited cleanly. This is set only once. |
| 259 bool last_session_exited_cleanly_; | 260 bool last_session_exited_cleanly_; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 #endif | 307 #endif |
| 307 | 308 |
| 308 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 309 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 309 | 310 |
| 310 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 311 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 311 | 312 |
| 312 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 313 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 313 }; | 314 }; |
| 314 | 315 |
| 315 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 316 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |