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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 virtual bool IsOffTheRecord() const OVERRIDE; | 80 virtual bool IsOffTheRecord() const OVERRIDE; |
81 virtual Profile* GetOffTheRecordProfile() OVERRIDE; | 81 virtual Profile* GetOffTheRecordProfile() OVERRIDE; |
82 virtual void DestroyOffTheRecordProfile() OVERRIDE; | 82 virtual void DestroyOffTheRecordProfile() OVERRIDE; |
83 virtual bool HasOffTheRecordProfile() OVERRIDE; | 83 virtual bool HasOffTheRecordProfile() OVERRIDE; |
84 virtual Profile* GetOriginalProfile() OVERRIDE; | 84 virtual Profile* GetOriginalProfile() OVERRIDE; |
85 virtual history::TopSites* GetTopSites() OVERRIDE; | 85 virtual history::TopSites* GetTopSites() OVERRIDE; |
86 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; | 86 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; |
87 virtual VisitedLinkMaster* GetVisitedLinkMaster() OVERRIDE; | 87 virtual VisitedLinkMaster* GetVisitedLinkMaster() OVERRIDE; |
88 virtual ExtensionService* GetExtensionService() OVERRIDE; | 88 virtual ExtensionService* GetExtensionService() OVERRIDE; |
89 virtual extensions::UserScriptMaster* GetUserScriptMaster() OVERRIDE; | 89 virtual extensions::UserScriptMaster* GetUserScriptMaster() OVERRIDE; |
90 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE; | |
91 virtual extensions::EventRouter* GetExtensionEventRouter() OVERRIDE; | 90 virtual extensions::EventRouter* GetExtensionEventRouter() OVERRIDE; |
92 virtual ExtensionSpecialStoragePolicy* | 91 virtual ExtensionSpecialStoragePolicy* |
93 GetExtensionSpecialStoragePolicy() OVERRIDE; | 92 GetExtensionSpecialStoragePolicy() OVERRIDE; |
94 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; | 93 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; |
95 virtual policy::UserCloudPolicyManager* GetUserCloudPolicyManager() OVERRIDE; | 94 virtual policy::UserCloudPolicyManager* GetUserCloudPolicyManager() OVERRIDE; |
96 virtual policy::ManagedModePolicyProvider* | 95 virtual policy::ManagedModePolicyProvider* |
97 GetManagedModePolicyProvider() OVERRIDE; | 96 GetManagedModePolicyProvider() OVERRIDE; |
98 virtual policy::PolicyService* GetPolicyService() OVERRIDE; | 97 virtual policy::PolicyService* GetPolicyService() OVERRIDE; |
99 virtual PrefService* GetPrefs() OVERRIDE; | 98 virtual PrefService* GetPrefs() OVERRIDE; |
100 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; | 99 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} | 261 // chrome/browser/profile/profile_keyed_dependency_manager.{h,cc} |
263 | 262 |
264 Profile::Delegate* delegate_; | 263 Profile::Delegate* delegate_; |
265 | 264 |
266 chrome_browser_net::Predictor* predictor_; | 265 chrome_browser_net::Predictor* predictor_; |
267 | 266 |
268 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 267 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
269 }; | 268 }; |
270 | 269 |
271 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 270 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |