Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 89 const std::string& app_id); | 89 const std::string& app_id); |
| 90 virtual const content::ResourceContext& GetResourceContext(); | 90 virtual const content::ResourceContext& GetResourceContext(); |
| 91 virtual void RegisterExtensionWithRequestContexts(const Extension* extension); | 91 virtual void RegisterExtensionWithRequestContexts(const Extension* extension); |
| 92 virtual void UnregisterExtensionWithRequestContexts( | 92 virtual void UnregisterExtensionWithRequestContexts( |
| 93 const std::string& extension_id, | 93 const std::string& extension_id, |
| 94 const extension_misc::UnloadedExtensionReason reason); | 94 const extension_misc::UnloadedExtensionReason reason); |
| 95 virtual net::SSLConfigService* GetSSLConfigService(); | 95 virtual net::SSLConfigService* GetSSLConfigService(); |
| 96 virtual HostContentSettingsMap* GetHostContentSettingsMap(); | 96 virtual HostContentSettingsMap* GetHostContentSettingsMap(); |
| 97 virtual HostZoomMap* GetHostZoomMap(); | 97 virtual HostZoomMap* GetHostZoomMap(); |
| 98 virtual GeolocationPermissionContext* GetGeolocationPermissionContext(); | 98 virtual GeolocationPermissionContext* GetGeolocationPermissionContext(); |
| 99 virtual bool GetSpeechCensorPref(); | |
|
Satish
2011/09/23 09:44:57
any reason not to tag these with OVERRIDE similar
Avi (use Gerrit)
2011/09/23 13:16:06
While you're in here, yeah, that's a really good i
allanwoj
2011/09/23 14:12:44
Done.
| |
| 99 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher(); | 100 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher(); |
| 100 virtual FindBarState* GetFindBarState(); | 101 virtual FindBarState* GetFindBarState(); |
| 101 virtual bool HasProfileSyncService() const; | 102 virtual bool HasProfileSyncService() const; |
| 102 virtual bool DidLastSessionExitCleanly(); | 103 virtual bool DidLastSessionExitCleanly(); |
| 103 virtual BookmarkModel* GetBookmarkModel(); | 104 virtual BookmarkModel* GetBookmarkModel(); |
| 104 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry(); | 105 virtual ProtocolHandlerRegistry* GetProtocolHandlerRegistry(); |
| 105 virtual bool IsSameProfile(Profile* profile); | 106 virtual bool IsSameProfile(Profile* profile); |
| 106 virtual base::Time GetStartTime() const; | 107 virtual base::Time GetStartTime() const; |
| 107 virtual SpellCheckHost* GetSpellCheckHost(); | 108 virtual SpellCheckHost* GetSpellCheckHost(); |
| 108 virtual void ReinitializeSpellCheckHost(bool force); | 109 virtual void ReinitializeSpellCheckHost(bool force); |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 292 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 293 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 293 | 294 |
| 294 Profile::Delegate* delegate_; | 295 Profile::Delegate* delegate_; |
| 295 | 296 |
| 296 chrome_browser_net::Predictor* predictor_; | 297 chrome_browser_net::Predictor* predictor_; |
| 297 | 298 |
| 298 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 299 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 299 }; | 300 }; |
| 300 | 301 |
| 301 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 302 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |