| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 | 275 |
| 276 #if defined(OS_CHROMEOS) | 276 #if defined(OS_CHROMEOS) |
| 277 scoped_ptr<chromeos::Preferences> chromeos_preferences_; | 277 scoped_ptr<chromeos::Preferences> chromeos_preferences_; |
| 278 | 278 |
| 279 scoped_ptr<chromeos::EnterpriseExtensionObserver> | 279 scoped_ptr<chromeos::EnterpriseExtensionObserver> |
| 280 chromeos_enterprise_extension_observer_; | 280 chromeos_enterprise_extension_observer_; |
| 281 | 281 |
| 282 scoped_ptr<chromeos::LocaleChangeGuard> locale_change_guard_; | 282 scoped_ptr<chromeos::LocaleChangeGuard> locale_change_guard_; |
| 283 #endif | 283 #endif |
| 284 | 284 |
| 285 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 285 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 286 | 286 |
| 287 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 287 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 288 | 288 |
| 289 Profile::Delegate* delegate_; | 289 Profile::Delegate* delegate_; |
| 290 | 290 |
| 291 chrome_browser_net::Predictor* predictor_; | 291 chrome_browser_net::Predictor* predictor_; |
| 292 | 292 |
| 293 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 293 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 294 }; | 294 }; |
| 295 | 295 |
| 296 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 296 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |