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