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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 virtual Profile* GetOffTheRecordProfile() OVERRIDE; | 73 virtual Profile* GetOffTheRecordProfile() OVERRIDE; |
74 virtual void DestroyOffTheRecordProfile() OVERRIDE; | 74 virtual void DestroyOffTheRecordProfile() OVERRIDE; |
75 virtual bool HasOffTheRecordProfile() OVERRIDE; | 75 virtual bool HasOffTheRecordProfile() OVERRIDE; |
76 virtual Profile* GetOriginalProfile() OVERRIDE; | 76 virtual Profile* GetOriginalProfile() OVERRIDE; |
77 virtual history::TopSites* GetTopSites() OVERRIDE; | 77 virtual history::TopSites* GetTopSites() OVERRIDE; |
78 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; | 78 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; |
79 virtual VisitedLinkMaster* GetVisitedLinkMaster() OVERRIDE; | 79 virtual VisitedLinkMaster* GetVisitedLinkMaster() OVERRIDE; |
80 virtual ExtensionService* GetExtensionService() OVERRIDE; | 80 virtual ExtensionService* GetExtensionService() OVERRIDE; |
81 virtual extensions::UserScriptMaster* GetUserScriptMaster() OVERRIDE; | 81 virtual extensions::UserScriptMaster* GetUserScriptMaster() OVERRIDE; |
82 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE; | 82 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE; |
83 virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE; | 83 virtual extensions::EventRouter* GetExtensionEventRouter() OVERRIDE; |
84 virtual ExtensionSpecialStoragePolicy* | 84 virtual ExtensionSpecialStoragePolicy* |
85 GetExtensionSpecialStoragePolicy() OVERRIDE; | 85 GetExtensionSpecialStoragePolicy() OVERRIDE; |
86 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; | 86 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; |
87 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; | 87 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; |
88 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; | 88 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; |
89 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; | 89 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; |
90 virtual policy::PolicyService* GetPolicyService() OVERRIDE; | 90 virtual policy::PolicyService* GetPolicyService() OVERRIDE; |
91 virtual PrefService* GetPrefs() OVERRIDE; | 91 virtual PrefService* GetPrefs() OVERRIDE; |
92 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; | 92 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; |
93 virtual net::URLRequestContextGetter* | 93 virtual net::URLRequestContextGetter* |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 Profile::Delegate* delegate_; | 254 Profile::Delegate* delegate_; |
255 | 255 |
256 chrome_browser_net::Predictor* predictor_; | 256 chrome_browser_net::Predictor* predictor_; |
257 | 257 |
258 bool session_restore_enabled_; | 258 bool session_restore_enabled_; |
259 | 259 |
260 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 260 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
261 }; | 261 }; |
262 | 262 |
263 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 263 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |