| 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(); | |
| 135 | 134 |
| 136 #if defined(OS_CHROMEOS) | 135 #if defined(OS_CHROMEOS) |
| 137 virtual void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia); | 136 virtual void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia); |
| 138 virtual chromeos::ProxyConfigServiceImpl* GetChromeOSProxyConfigServiceImpl(); | 137 virtual chromeos::ProxyConfigServiceImpl* GetChromeOSProxyConfigServiceImpl(); |
| 139 virtual void SetupChromeOSEnterpriseExtensionObserver(); | 138 virtual void SetupChromeOSEnterpriseExtensionObserver(); |
| 140 #endif // defined(OS_CHROMEOS) | 139 #endif // defined(OS_CHROMEOS) |
| 141 | 140 |
| 142 virtual PrefProxyConfigTracker* GetProxyConfigTracker(); | 141 virtual PrefProxyConfigTracker* GetProxyConfigTracker(); |
| 143 virtual PrerenderManager* GetPrerenderManager(); | 142 virtual PrerenderManager* GetPrerenderManager(); |
| 144 | 143 |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 chromeos_proxy_config_service_impl_; | 299 chromeos_proxy_config_service_impl_; |
| 301 | 300 |
| 302 scoped_ptr<chromeos::EnterpriseExtensionObserver> | 301 scoped_ptr<chromeos::EnterpriseExtensionObserver> |
| 303 chromeos_enterprise_extension_observer_; | 302 chromeos_enterprise_extension_observer_; |
| 304 #endif | 303 #endif |
| 305 | 304 |
| 306 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 305 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 307 | 306 |
| 308 scoped_refptr<PrerenderManager> prerender_manager_; | 307 scoped_refptr<PrerenderManager> prerender_manager_; |
| 309 | 308 |
| 310 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | |
| 311 | |
| 312 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 309 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 313 }; | 310 }; |
| 314 | 311 |
| 315 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 312 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |