| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 virtual std::string GetProfileName() OVERRIDE; | 94 virtual std::string GetProfileName() OVERRIDE; |
| 95 virtual ProfileType GetProfileType() const OVERRIDE; | 95 virtual ProfileType GetProfileType() const OVERRIDE; |
| 96 virtual bool IsOffTheRecord() const OVERRIDE; | 96 virtual bool IsOffTheRecord() const OVERRIDE; |
| 97 virtual Profile* GetOffTheRecordProfile() OVERRIDE; | 97 virtual Profile* GetOffTheRecordProfile() OVERRIDE; |
| 98 virtual void DestroyOffTheRecordProfile() OVERRIDE; | 98 virtual void DestroyOffTheRecordProfile() OVERRIDE; |
| 99 virtual bool HasOffTheRecordProfile() OVERRIDE; | 99 virtual bool HasOffTheRecordProfile() OVERRIDE; |
| 100 virtual Profile* GetOriginalProfile() OVERRIDE; | 100 virtual Profile* GetOriginalProfile() OVERRIDE; |
| 101 virtual bool IsSupervised() OVERRIDE; | 101 virtual bool IsSupervised() OVERRIDE; |
| 102 virtual history::TopSites* GetTopSites() OVERRIDE; | 102 virtual history::TopSites* GetTopSites() OVERRIDE; |
| 103 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; | 103 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; |
| 104 virtual ExtensionService* GetExtensionService() OVERRIDE; | |
| 105 virtual ExtensionSpecialStoragePolicy* | 104 virtual ExtensionSpecialStoragePolicy* |
| 106 GetExtensionSpecialStoragePolicy() OVERRIDE; | 105 GetExtensionSpecialStoragePolicy() OVERRIDE; |
| 107 virtual PrefService* GetPrefs() OVERRIDE; | 106 virtual PrefService* GetPrefs() OVERRIDE; |
| 108 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; | 107 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; |
| 109 virtual net::URLRequestContextGetter* | 108 virtual net::URLRequestContextGetter* |
| 110 GetRequestContextForExtensions() OVERRIDE; | 109 GetRequestContextForExtensions() OVERRIDE; |
| 111 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; | 110 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
| 112 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; | 111 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
| 113 virtual bool IsSameProfile(Profile* profile) OVERRIDE; | 112 virtual bool IsSameProfile(Profile* profile) OVERRIDE; |
| 114 virtual base::Time GetStartTime() const OVERRIDE; | 113 virtual base::Time GetStartTime() const OVERRIDE; |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 // components/keyed_service/content/browser_context_keyed_service_factory.* | 282 // components/keyed_service/content/browser_context_keyed_service_factory.* |
| 284 | 283 |
| 285 Profile::Delegate* delegate_; | 284 Profile::Delegate* delegate_; |
| 286 | 285 |
| 287 chrome_browser_net::Predictor* predictor_; | 286 chrome_browser_net::Predictor* predictor_; |
| 288 | 287 |
| 289 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 288 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 290 }; | 289 }; |
| 291 | 290 |
| 292 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 291 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |