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 |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "base/ref_counted.h" | 12 #include "base/ref_counted.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "base/timer.h" | 14 #include "base/timer.h" |
15 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
16 #include "chrome/browser/prefs/pref_change_registrar.h" | 16 #include "chrome/browser/prefs/pref_change_registrar.h" |
17 #include "chrome/browser/spellcheck_host_observer.h" | 17 #include "chrome/browser/spellcheck_host_observer.h" |
18 #include "chrome/common/notification_observer.h" | 18 #include "chrome/common/notification_observer.h" |
19 #include "chrome/common/notification_registrar.h" | 19 #include "chrome/common/notification_registrar.h" |
20 | 20 |
21 class BackgroundModeManager; | 21 class BackgroundModeManager; |
22 class ExtensionPrefs; | 22 class ExtensionPrefs; |
| 23 class ExtensionPrefValueMap; |
23 class PrefService; | 24 class PrefService; |
24 | 25 |
25 #if defined(OS_CHROMEOS) | 26 #if defined(OS_CHROMEOS) |
26 namespace chromeos { | 27 namespace chromeos { |
27 class Preferences; | 28 class Preferences; |
28 } | 29 } |
29 #endif | 30 #endif |
30 | 31 |
31 class NetPrefObserver; | 32 class NetPrefObserver; |
32 | 33 |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 virtual PrerenderManager* GetPrerenderManager(); | 140 virtual PrerenderManager* GetPrerenderManager(); |
140 | 141 |
141 // NotificationObserver implementation. | 142 // NotificationObserver implementation. |
142 virtual void Observe(NotificationType type, | 143 virtual void Observe(NotificationType type, |
143 const NotificationSource& source, | 144 const NotificationSource& source, |
144 const NotificationDetails& details); | 145 const NotificationDetails& details); |
145 | 146 |
146 // SpellCheckHostObserver implementation. | 147 // SpellCheckHostObserver implementation. |
147 virtual void SpellCheckHostInitialized(); | 148 virtual void SpellCheckHostInitialized(); |
148 | 149 |
| 150 protected: |
| 151 virtual ExtensionPrefValueMap* GetExtensionPrefValueMap(); |
| 152 |
149 private: | 153 private: |
150 friend class Profile; | 154 friend class Profile; |
151 | 155 |
152 explicit ProfileImpl(const FilePath& path); | 156 explicit ProfileImpl(const FilePath& path); |
153 | 157 |
154 void CreateWebDataService(); | 158 void CreateWebDataService(); |
155 FilePath GetPrefFilePath(); | 159 FilePath GetPrefFilePath(); |
156 | 160 |
157 void CreatePasswordStore(); | 161 void CreatePasswordStore(); |
158 | 162 |
159 void StopCreateSessionServiceTimer(); | 163 void StopCreateSessionServiceTimer(); |
160 | 164 |
161 void EnsureRequestContextCreated() { | 165 void EnsureRequestContextCreated() { |
162 GetRequestContext(); | 166 GetRequestContext(); |
163 } | 167 } |
164 | 168 |
165 void EnsureSessionServiceCreated() { | 169 void EnsureSessionServiceCreated() { |
166 GetSessionService(); | 170 GetSessionService(); |
167 } | 171 } |
168 | 172 |
169 void RegisterComponentExtensions(); | 173 void RegisterComponentExtensions(); |
170 void InstallDefaultApps(); | 174 void InstallDefaultApps(); |
171 | 175 |
172 NotificationRegistrar registrar_; | 176 NotificationRegistrar registrar_; |
173 PrefChangeRegistrar pref_change_registrar_; | 177 PrefChangeRegistrar pref_change_registrar_; |
174 | 178 |
175 FilePath path_; | 179 FilePath path_; |
176 FilePath base_cache_path_; | 180 FilePath base_cache_path_; |
| 181 scoped_ptr<ExtensionPrefValueMap> extension_pref_value_map_; |
177 // Keep prefs_ on top for destruction order because extension_prefs_, | 182 // Keep prefs_ on top for destruction order because extension_prefs_, |
178 // net_pref_observer_, web_resource_service_ and background_contents_service_ | 183 // net_pref_observer_, web_resource_service_ and background_contents_service_ |
179 // store pointers to prefs_ and shall be destructed first. | 184 // store pointers to prefs_ and shall be destructed first. |
180 scoped_ptr<PrefService> prefs_; | 185 scoped_ptr<PrefService> prefs_; |
181 scoped_ptr<VisitedLinkEventListener> visited_link_event_listener_; | 186 scoped_ptr<VisitedLinkEventListener> visited_link_event_listener_; |
182 scoped_ptr<VisitedLinkMaster> visited_link_master_; | 187 scoped_ptr<VisitedLinkMaster> visited_link_master_; |
183 // Keep extension_prefs_ on top of extensions_service_ because the latter | 188 // Keep extension_prefs_ on top of extensions_service_ because the latter |
184 // maintains a pointer to the first and shall be destructed first. | 189 // maintains a pointer to the first and shall be destructed first. |
185 scoped_ptr<ExtensionPrefs> extension_prefs_; | 190 scoped_ptr<ExtensionPrefs> extension_prefs_; |
186 scoped_refptr<ExtensionService> extensions_service_; | 191 scoped_refptr<ExtensionService> extensions_service_; |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 #endif | 304 #endif |
300 | 305 |
301 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 306 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
302 | 307 |
303 scoped_refptr<PrerenderManager> prerender_manager_; | 308 scoped_refptr<PrerenderManager> prerender_manager_; |
304 | 309 |
305 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 310 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
306 }; | 311 }; |
307 | 312 |
308 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 313 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |