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 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 // pointers to |prefs_| and shall be destructed first. | 224 // pointers to |prefs_| and shall be destructed first. |
225 scoped_ptr<PrefServiceSyncable> prefs_; | 225 scoped_ptr<PrefServiceSyncable> prefs_; |
226 scoped_ptr<PrefServiceSyncable> otr_prefs_; | 226 scoped_ptr<PrefServiceSyncable> otr_prefs_; |
227 ProfileImplIOData::Handle io_data_; | 227 ProfileImplIOData::Handle io_data_; |
228 scoped_refptr<ExtensionSpecialStoragePolicy> | 228 scoped_refptr<ExtensionSpecialStoragePolicy> |
229 extension_special_storage_policy_; | 229 extension_special_storage_policy_; |
230 scoped_ptr<NetPrefObserver> net_pref_observer_; | 230 scoped_ptr<NetPrefObserver> net_pref_observer_; |
231 scoped_refptr<PromoResourceService> promo_resource_service_; | 231 scoped_refptr<PromoResourceService> promo_resource_service_; |
232 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; | 232 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; |
233 scoped_refptr<HostContentSettingsMap> host_content_settings_map_; | 233 scoped_refptr<HostContentSettingsMap> host_content_settings_map_; |
234 scoped_refptr<content::GeolocationPermissionContext> | |
235 geolocation_permission_context_; | |
236 scoped_ptr<GAIAInfoUpdateService> gaia_info_update_service_; | 234 scoped_ptr<GAIAInfoUpdateService> gaia_info_update_service_; |
237 scoped_refptr<history::ShortcutsBackend> shortcuts_backend_; | 235 scoped_refptr<history::ShortcutsBackend> shortcuts_backend_; |
238 | 236 |
239 // Exit type the last time the profile was opened. This is set only once from | 237 // Exit type the last time the profile was opened. This is set only once from |
240 // prefs. | 238 // prefs. |
241 ExitType last_session_exit_type_; | 239 ExitType last_session_exit_type_; |
242 | 240 |
243 #if defined(ENABLE_SESSION_SERVICE) | 241 #if defined(ENABLE_SESSION_SERVICE) |
244 base::OneShotTimer<ProfileImpl> create_session_service_timer_; | 242 base::OneShotTimer<ProfileImpl> create_session_service_timer_; |
245 #endif | 243 #endif |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} | 275 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} |
278 | 276 |
279 Profile::Delegate* delegate_; | 277 Profile::Delegate* delegate_; |
280 | 278 |
281 chrome_browser_net::Predictor* predictor_; | 279 chrome_browser_net::Predictor* predictor_; |
282 | 280 |
283 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 281 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
284 }; | 282 }; |
285 | 283 |
286 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 284 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |