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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; | 123 virtual void set_last_selected_directory(const FilePath& path) OVERRIDE; |
124 virtual ProfileSyncService* GetProfileSyncService() OVERRIDE; | 124 virtual ProfileSyncService* GetProfileSyncService() OVERRIDE; |
125 virtual ProfileSyncService* GetProfileSyncService( | 125 virtual ProfileSyncService* GetProfileSyncService( |
126 const std::string& cros_user) OVERRIDE; | 126 const std::string& cros_user) OVERRIDE; |
127 virtual TokenService* GetTokenService() OVERRIDE; | 127 virtual TokenService* GetTokenService() OVERRIDE; |
128 void InitSyncService(const std::string& cros_user); | 128 void InitSyncService(const std::string& cros_user); |
129 virtual ExtensionInfoMap* GetExtensionInfoMap() OVERRIDE; | 129 virtual ExtensionInfoMap* GetExtensionInfoMap() OVERRIDE; |
130 virtual PromoCounter* GetInstantPromoCounter() OVERRIDE; | 130 virtual PromoCounter* GetInstantPromoCounter() OVERRIDE; |
131 virtual ChromeURLDataManager* GetChromeURLDataManager() OVERRIDE; | 131 virtual ChromeURLDataManager* GetChromeURLDataManager() OVERRIDE; |
132 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; | 132 virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE; |
133 virtual void DeleteTransportSecurityStateSince(base::Time time) OVERRIDE; | 133 virtual void ClearNetworkingHistorySince(base::Time time) OVERRIDE; |
134 | 134 |
135 #if defined(OS_CHROMEOS) | 135 #if defined(OS_CHROMEOS) |
136 virtual void ChangeAppLocale(const std::string& locale, | 136 virtual void ChangeAppLocale(const std::string& locale, |
137 AppLocaleChangedVia) OVERRIDE; | 137 AppLocaleChangedVia) OVERRIDE; |
138 virtual void OnLogin() OVERRIDE; | 138 virtual void OnLogin() OVERRIDE; |
139 virtual void SetupChromeOSEnterpriseExtensionObserver() OVERRIDE; | 139 virtual void SetupChromeOSEnterpriseExtensionObserver() OVERRIDE; |
140 virtual void InitChromeOSPreferences() OVERRIDE; | 140 virtual void InitChromeOSPreferences() OVERRIDE; |
141 #endif // defined(OS_CHROMEOS) | 141 #endif // defined(OS_CHROMEOS) |
142 | 142 |
143 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; | 143 virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE; |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 296 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
297 | 297 |
298 Profile::Delegate* delegate_; | 298 Profile::Delegate* delegate_; |
299 | 299 |
300 chrome_browser_net::Predictor* predictor_; | 300 chrome_browser_net::Predictor* predictor_; |
301 | 301 |
302 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 302 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
303 }; | 303 }; |
304 | 304 |
305 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 305 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |