| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 const std::string& cros_user); | 124 const std::string& cros_user); |
| 125 virtual TokenService* GetTokenService(); | 125 virtual TokenService* GetTokenService(); |
| 126 void InitSyncService(const std::string& cros_user); | 126 void InitSyncService(const std::string& cros_user); |
| 127 virtual CloudPrintProxyService* GetCloudPrintProxyService(); | 127 virtual CloudPrintProxyService* GetCloudPrintProxyService(); |
| 128 void InitCloudPrintProxyService(); | 128 void InitCloudPrintProxyService(); |
| 129 virtual ChromeBlobStorageContext* GetBlobStorageContext(); | 129 virtual ChromeBlobStorageContext* GetBlobStorageContext(); |
| 130 virtual ExtensionInfoMap* GetExtensionInfoMap(); | 130 virtual ExtensionInfoMap* GetExtensionInfoMap(); |
| 131 virtual PromoCounter* GetInstantPromoCounter(); | 131 virtual PromoCounter* GetInstantPromoCounter(); |
| 132 virtual BrowserSignin* GetBrowserSignin(); | 132 virtual BrowserSignin* GetBrowserSignin(); |
| 133 virtual policy::ProfilePolicyContext* GetPolicyContext(); | 133 virtual policy::ProfilePolicyContext* GetPolicyContext(); |
| 134 virtual ChromeURLDataManager* GetChromeURLDataManager(); |
| 134 | 135 |
| 135 #if defined(OS_CHROMEOS) | 136 #if defined(OS_CHROMEOS) |
| 136 virtual void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia); | 137 virtual void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia); |
| 137 virtual chromeos::ProxyConfigServiceImpl* GetChromeOSProxyConfigServiceImpl(); | 138 virtual chromeos::ProxyConfigServiceImpl* GetChromeOSProxyConfigServiceImpl(); |
| 138 virtual void SetupChromeOSEnterpriseExtensionObserver(); | 139 virtual void SetupChromeOSEnterpriseExtensionObserver(); |
| 139 #endif // defined(OS_CHROMEOS) | 140 #endif // defined(OS_CHROMEOS) |
| 140 | 141 |
| 141 virtual PrefProxyConfigTracker* GetProxyConfigTracker(); | 142 virtual PrefProxyConfigTracker* GetProxyConfigTracker(); |
| 142 virtual PrerenderManager* GetPrerenderManager(); | 143 virtual PrerenderManager* GetPrerenderManager(); |
| 143 | 144 |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 chromeos_proxy_config_service_impl_; | 300 chromeos_proxy_config_service_impl_; |
| 300 | 301 |
| 301 scoped_ptr<chromeos::EnterpriseExtensionObserver> | 302 scoped_ptr<chromeos::EnterpriseExtensionObserver> |
| 302 chromeos_enterprise_extension_observer_; | 303 chromeos_enterprise_extension_observer_; |
| 303 #endif | 304 #endif |
| 304 | 305 |
| 305 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 306 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 306 | 307 |
| 307 scoped_refptr<PrerenderManager> prerender_manager_; | 308 scoped_refptr<PrerenderManager> prerender_manager_; |
| 308 | 309 |
| 310 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 311 |
| 309 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 312 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 310 }; | 313 }; |
| 311 | 314 |
| 312 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 315 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |