| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 virtual ChromeBlobStorageContext* GetBlobStorageContext(); | 123 virtual ChromeBlobStorageContext* GetBlobStorageContext(); |
| 124 virtual ExtensionInfoMap* GetExtensionInfoMap(); | 124 virtual ExtensionInfoMap* GetExtensionInfoMap(); |
| 125 virtual PromoCounter* GetInstantPromoCounter(); | 125 virtual PromoCounter* GetInstantPromoCounter(); |
| 126 virtual BrowserSignin* GetBrowserSignin(); | 126 virtual BrowserSignin* GetBrowserSignin(); |
| 127 virtual policy::ProfilePolicyContext* GetPolicyContext(); | 127 virtual policy::ProfilePolicyContext* GetPolicyContext(); |
| 128 | 128 |
| 129 #if defined(OS_CHROMEOS) | 129 #if defined(OS_CHROMEOS) |
| 130 virtual chromeos::ProxyConfigServiceImpl* GetChromeOSProxyConfigServiceImpl(); | 130 virtual chromeos::ProxyConfigServiceImpl* GetChromeOSProxyConfigServiceImpl(); |
| 131 #endif // defined(OS_CHROMEOS) | 131 #endif // defined(OS_CHROMEOS) |
| 132 | 132 |
| 133 virtual PrefProxyConfigTracker* GetProxyConfigTracker(); |
| 134 |
| 133 // NotificationObserver implementation. | 135 // NotificationObserver implementation. |
| 134 virtual void Observe(NotificationType type, | 136 virtual void Observe(NotificationType type, |
| 135 const NotificationSource& source, | 137 const NotificationSource& source, |
| 136 const NotificationDetails& details); | 138 const NotificationDetails& details); |
| 137 | 139 |
| 138 // SpellCheckHostObserver implementation. | 140 // SpellCheckHostObserver implementation. |
| 139 virtual void SpellCheckHostInitialized(); | 141 virtual void SpellCheckHostInitialized(); |
| 140 | 142 |
| 141 private: | 143 private: |
| 142 friend class Profile; | 144 friend class Profile; |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 | 275 |
| 274 scoped_refptr<ExtensionInfoMap> extension_info_map_; | 276 scoped_refptr<ExtensionInfoMap> extension_info_map_; |
| 275 | 277 |
| 276 #if defined(OS_CHROMEOS) | 278 #if defined(OS_CHROMEOS) |
| 277 scoped_ptr<chromeos::Preferences> chromeos_preferences_; | 279 scoped_ptr<chromeos::Preferences> chromeos_preferences_; |
| 278 | 280 |
| 279 scoped_refptr<chromeos::ProxyConfigServiceImpl> | 281 scoped_refptr<chromeos::ProxyConfigServiceImpl> |
| 280 chromeos_proxy_config_service_impl_; | 282 chromeos_proxy_config_service_impl_; |
| 281 #endif | 283 #endif |
| 282 | 284 |
| 285 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 286 |
| 283 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 287 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 284 }; | 288 }; |
| 285 | 289 |
| 286 #endif // CHROME_BROWSER_PROFILE_IMPL_H_ | 290 #endif // CHROME_BROWSER_PROFILE_IMPL_H_ |
| OLD | NEW |