| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 virtual std::string GetProfileName() OVERRIDE; | 74 virtual std::string GetProfileName() OVERRIDE; |
| 75 virtual bool IsOffTheRecord() const OVERRIDE; | 75 virtual bool IsOffTheRecord() const OVERRIDE; |
| 76 virtual Profile* GetOffTheRecordProfile() OVERRIDE; | 76 virtual Profile* GetOffTheRecordProfile() OVERRIDE; |
| 77 virtual void DestroyOffTheRecordProfile() OVERRIDE; | 77 virtual void DestroyOffTheRecordProfile() OVERRIDE; |
| 78 virtual bool HasOffTheRecordProfile() OVERRIDE; | 78 virtual bool HasOffTheRecordProfile() OVERRIDE; |
| 79 virtual Profile* GetOriginalProfile() OVERRIDE; | 79 virtual Profile* GetOriginalProfile() OVERRIDE; |
| 80 virtual history::TopSites* GetTopSites() OVERRIDE; | 80 virtual history::TopSites* GetTopSites() OVERRIDE; |
| 81 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; | 81 virtual history::TopSites* GetTopSitesWithoutCreating() OVERRIDE; |
| 82 virtual VisitedLinkMaster* GetVisitedLinkMaster() OVERRIDE; | 82 virtual VisitedLinkMaster* GetVisitedLinkMaster() OVERRIDE; |
| 83 virtual ExtensionService* GetExtensionService() OVERRIDE; | 83 virtual ExtensionService* GetExtensionService() OVERRIDE; |
| 84 virtual UserScriptMaster* GetUserScriptMaster() OVERRIDE; | 84 virtual extensions::UserScriptMaster* GetUserScriptMaster() OVERRIDE; |
| 85 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE; | 85 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE; |
| 86 virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE; | 86 virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE; |
| 87 virtual ExtensionSpecialStoragePolicy* | 87 virtual ExtensionSpecialStoragePolicy* |
| 88 GetExtensionSpecialStoragePolicy() OVERRIDE; | 88 GetExtensionSpecialStoragePolicy() OVERRIDE; |
| 89 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; | 89 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; |
| 90 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; | 90 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; |
| 91 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; | 91 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; |
| 92 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; | 92 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; |
| 93 virtual policy::PolicyService* GetPolicyService() OVERRIDE; | 93 virtual policy::PolicyService* GetPolicyService() OVERRIDE; |
| 94 virtual PrefService* GetPrefs() OVERRIDE; | 94 virtual PrefService* GetPrefs() OVERRIDE; |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 Profile::Delegate* delegate_; | 268 Profile::Delegate* delegate_; |
| 269 | 269 |
| 270 chrome_browser_net::Predictor* predictor_; | 270 chrome_browser_net::Predictor* predictor_; |
| 271 | 271 |
| 272 bool session_restore_enabled_; | 272 bool session_restore_enabled_; |
| 273 | 273 |
| 274 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 274 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 275 }; | 275 }; |
| 276 | 276 |
| 277 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 277 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |