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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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::UserScriptMaster* GetUserScriptMaster() OVERRIDE; | 87 virtual extensions::UserScriptMaster* GetUserScriptMaster() OVERRIDE; |
88 virtual extensions::EventRouter* GetExtensionEventRouter() OVERRIDE; | |
89 virtual ExtensionSpecialStoragePolicy* | 88 virtual ExtensionSpecialStoragePolicy* |
90 GetExtensionSpecialStoragePolicy() OVERRIDE; | 89 GetExtensionSpecialStoragePolicy() OVERRIDE; |
91 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; | 90 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; |
92 virtual policy::UserCloudPolicyManager* GetUserCloudPolicyManager() OVERRIDE; | 91 virtual policy::UserCloudPolicyManager* GetUserCloudPolicyManager() OVERRIDE; |
93 virtual policy::ManagedModePolicyProvider* | 92 virtual policy::ManagedModePolicyProvider* |
94 GetManagedModePolicyProvider() OVERRIDE; | 93 GetManagedModePolicyProvider() OVERRIDE; |
95 virtual policy::PolicyService* GetPolicyService() OVERRIDE; | 94 virtual policy::PolicyService* GetPolicyService() OVERRIDE; |
96 virtual PrefService* GetPrefs() OVERRIDE; | 95 virtual PrefService* GetPrefs() OVERRIDE; |
97 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; | 96 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; |
98 virtual net::URLRequestContextGetter* | 97 virtual net::URLRequestContextGetter* |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} | 256 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} |
258 | 257 |
259 Profile::Delegate* delegate_; | 258 Profile::Delegate* delegate_; |
260 | 259 |
261 chrome_browser_net::Predictor* predictor_; | 260 chrome_browser_net::Predictor* predictor_; |
262 | 261 |
263 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 262 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
264 }; | 263 }; |
265 | 264 |
266 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 265 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |