| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 virtual ExtensionService* GetExtensionService() OVERRIDE; | 81 virtual ExtensionService* GetExtensionService() OVERRIDE; |
| 82 virtual UserScriptMaster* GetUserScriptMaster() OVERRIDE; | 82 virtual UserScriptMaster* GetUserScriptMaster() OVERRIDE; |
| 83 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE; | 83 virtual ExtensionProcessManager* GetExtensionProcessManager() OVERRIDE; |
| 84 virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE; | 84 virtual ExtensionEventRouter* GetExtensionEventRouter() OVERRIDE; |
| 85 virtual ExtensionSpecialStoragePolicy* | 85 virtual ExtensionSpecialStoragePolicy* |
| 86 GetExtensionSpecialStoragePolicy() OVERRIDE; | 86 GetExtensionSpecialStoragePolicy() OVERRIDE; |
| 87 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; | 87 virtual FaviconService* GetFaviconService(ServiceAccessType sat) OVERRIDE; |
| 88 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; | 88 virtual GAIAInfoUpdateService* GetGAIAInfoUpdateService() OVERRIDE; |
| 89 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; | 89 virtual HistoryService* GetHistoryService(ServiceAccessType sat) OVERRIDE; |
| 90 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; | 90 virtual HistoryService* GetHistoryServiceWithoutCreating() OVERRIDE; |
| 91 virtual history::ShortcutsBackend* GetShortcutsBackend() OVERRIDE; | |
| 92 virtual policy::PolicyService* GetPolicyService() OVERRIDE; | 91 virtual policy::PolicyService* GetPolicyService() OVERRIDE; |
| 93 virtual PrefService* GetPrefs() OVERRIDE; | 92 virtual PrefService* GetPrefs() OVERRIDE; |
| 94 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; | 93 virtual PrefService* GetOffTheRecordPrefs() OVERRIDE; |
| 95 virtual net::URLRequestContextGetter* | 94 virtual net::URLRequestContextGetter* |
| 96 GetRequestContextForExtensions() OVERRIDE; | 95 GetRequestContextForExtensions() OVERRIDE; |
| 97 virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp( | 96 virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp( |
| 98 const std::string& app_id) OVERRIDE; | 97 const std::string& app_id) OVERRIDE; |
| 99 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; | 98 virtual net::SSLConfigService* GetSSLConfigService() OVERRIDE; |
| 100 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; | 99 virtual HostContentSettingsMap* GetHostContentSettingsMap() OVERRIDE; |
| 101 virtual BookmarkModel* GetBookmarkModel() OVERRIDE; | 100 virtual BookmarkModel* GetBookmarkModel() OVERRIDE; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 Profile::Delegate* delegate_; | 266 Profile::Delegate* delegate_; |
| 268 | 267 |
| 269 chrome_browser_net::Predictor* predictor_; | 268 chrome_browser_net::Predictor* predictor_; |
| 270 | 269 |
| 271 bool session_restore_enabled_; | 270 bool session_restore_enabled_; |
| 272 | 271 |
| 273 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 272 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 274 }; | 273 }; |
| 275 | 274 |
| 276 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 275 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |