OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_PROFILE_IMPL_H_ | 7 #ifndef CHROME_BROWSER_PROFILE_IMPL_H_ |
8 #define CHROME_BROWSER_PROFILE_IMPL_H_ | 8 #define CHROME_BROWSER_PROFILE_IMPL_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 virtual net::SSLConfigService* GetSSLConfigService(); | 87 virtual net::SSLConfigService* GetSSLConfigService(); |
88 virtual HostContentSettingsMap* GetHostContentSettingsMap(); | 88 virtual HostContentSettingsMap* GetHostContentSettingsMap(); |
89 virtual HostZoomMap* GetHostZoomMap(); | 89 virtual HostZoomMap* GetHostZoomMap(); |
90 virtual GeolocationContentSettingsMap* GetGeolocationContentSettingsMap(); | 90 virtual GeolocationContentSettingsMap* GetGeolocationContentSettingsMap(); |
91 virtual GeolocationPermissionContext* GetGeolocationPermissionContext(); | 91 virtual GeolocationPermissionContext* GetGeolocationPermissionContext(); |
92 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher(); | 92 virtual UserStyleSheetWatcher* GetUserStyleSheetWatcher(); |
93 virtual FindBarState* GetFindBarState(); | 93 virtual FindBarState* GetFindBarState(); |
94 virtual SessionService* GetSessionService(); | 94 virtual SessionService* GetSessionService(); |
95 virtual void ShutdownSessionService(); | 95 virtual void ShutdownSessionService(); |
96 virtual bool HasSessionService() const; | 96 virtual bool HasSessionService() const; |
| 97 virtual bool HasProfileSyncService() const; |
97 virtual bool DidLastSessionExitCleanly(); | 98 virtual bool DidLastSessionExitCleanly(); |
98 virtual BookmarkModel* GetBookmarkModel(); | 99 virtual BookmarkModel* GetBookmarkModel(); |
99 virtual bool IsSameProfile(Profile* profile); | 100 virtual bool IsSameProfile(Profile* profile); |
100 virtual base::Time GetStartTime() const; | 101 virtual base::Time GetStartTime() const; |
101 virtual TabRestoreService* GetTabRestoreService(); | 102 virtual TabRestoreService* GetTabRestoreService(); |
102 virtual void ResetTabRestoreService(); | 103 virtual void ResetTabRestoreService(); |
103 virtual SpellCheckHost* GetSpellCheckHost(); | 104 virtual SpellCheckHost* GetSpellCheckHost(); |
104 virtual void ReinitializeSpellCheckHost(bool force); | 105 virtual void ReinitializeSpellCheckHost(bool force); |
105 virtual WebKitContext* GetWebKitContext(); | 106 virtual WebKitContext* GetWebKitContext(); |
106 virtual DesktopNotificationService* GetDesktopNotificationService(); | 107 virtual DesktopNotificationService* GetDesktopNotificationService(); |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 scoped_ptr<chromeos::Preferences> chromeos_preferences_; | 269 scoped_ptr<chromeos::Preferences> chromeos_preferences_; |
269 | 270 |
270 scoped_refptr<chromeos::ProxyConfigServiceImpl> | 271 scoped_refptr<chromeos::ProxyConfigServiceImpl> |
271 chromeos_proxy_config_service_impl_; | 272 chromeos_proxy_config_service_impl_; |
272 #endif | 273 #endif |
273 | 274 |
274 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 275 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
275 }; | 276 }; |
276 | 277 |
277 #endif // CHROME_BROWSER_PROFILE_IMPL_H_ | 278 #endif // CHROME_BROWSER_PROFILE_IMPL_H_ |
OLD | NEW |