| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 // Profile implementation: | 77 // Profile implementation: |
| 78 virtual std::string GetProfileName() OVERRIDE; | 78 virtual std::string GetProfileName() OVERRIDE; |
| 79 virtual bool IsOffTheRecord() const OVERRIDE; | 79 virtual bool IsOffTheRecord() const OVERRIDE; |
| 80 virtual Profile* GetOffTheRecordProfile() OVERRIDE; | 80 virtual Profile* GetOffTheRecordProfile() OVERRIDE; |
| 81 virtual void DestroyOffTheRecordProfile() OVERRIDE; | 81 virtual void DestroyOffTheRecordProfile() OVERRIDE; |
| 82 virtual bool HasOffTheRecordProfile() OVERRIDE; | 82 virtual bool HasOffTheRecordProfile() OVERRIDE; |
| 83 virtual Profile* GetOriginalProfile() OVERRIDE; | 83 virtual Profile* GetOriginalProfile() OVERRIDE; |
| 84 virtual history::TopSites* GetTopSites() OVERRIDE; | 84 virtual history::TopSites* GetTopSites() OVERRIDE; |
| 85 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; | 85 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; |
| 86 virtual ExtensionService* GetExtensionService() OVERRIDE; | 86 virtual ExtensionService* GetExtensionService() OVERRIDE; |
| 87 virtual extensions::EventRouter* GetExtensionEventRouter() OVERRIDE; | |
| 88 virtual ExtensionSpecialStoragePolicy* | 87 virtual ExtensionSpecialStoragePolicy* |
| 89 GetExtensionSpecialStoragePolicy() OVERRIDE; | 88 GetExtensionSpecialStoragePolicy() OVERRIDE; |
| 90 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; | 89 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; |
| 91 virtual policy::UserCloudPolicyManager* GetUserCloudPolicyManager() OVERRIDE; | 90 virtual policy::UserCloudPolicyManager* GetUserCloudPolicyManager() OVERRIDE; |
| 92 virtual policy::ManagedModePolicyProvider* | 91 virtual policy::ManagedModePolicyProvider* |
| 93 GetManagedModePolicyProvider() OVERRIDE; | 92 GetManagedModePolicyProvider() OVERRIDE; |
| 94 virtual policy::PolicyService* GetPolicyService() OVERRIDE; | 93 virtual policy::PolicyService* GetPolicyService() OVERRIDE; |
| 95 virtual PrefService* GetPrefs() OVERRIDE; | 94 virtual PrefService* GetPrefs() OVERRIDE; |
| 96 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; | 95 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; |
| 97 virtual net::URLRequestContextGetter* | 96 virtual net::URLRequestContextGetter* |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} | 255 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} |
| 257 | 256 |
| 258 Profile::Delegate* delegate_; | 257 Profile::Delegate* delegate_; |
| 259 | 258 |
| 260 chrome_browser_net::Predictor* predictor_; | 259 chrome_browser_net::Predictor* predictor_; |
| 261 | 260 |
| 262 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 261 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 263 }; | 262 }; |
| 264 | 263 |
| 265 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 264 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |