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/prefs/pref_change_registrar.h" | 15 #include "chrome/browser/prefs/pref_change_registrar.h" |
16 #include "chrome/browser/profiles/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
17 #include "chrome/browser/profiles/profile_impl_io_data.h" | 17 #include "chrome/browser/profiles/profile_impl_io_data.h" |
18 #include "chrome/browser/spellcheck_host_observer.h" | 18 #include "chrome/browser/spellcheck_host_observer.h" |
19 #include "chrome/common/notification_observer.h" | 19 #include "chrome/common/notification_observer.h" |
20 #include "chrome/common/notification_registrar.h" | 20 #include "chrome/common/notification_registrar.h" |
21 | 21 |
22 class BackgroundModeManager; | 22 class BackgroundModeManager; |
| 23 class ExtensionPrefValueMap; |
23 class ExtensionPrefs; | 24 class ExtensionPrefs; |
24 class ExtensionPrefValueMap; | |
25 class PrefService; | 25 class PrefService; |
26 | 26 |
27 #if defined(OS_CHROMEOS) | 27 #if defined(OS_CHROMEOS) |
28 namespace chromeos { | 28 namespace chromeos { |
29 class Preferences; | 29 class Preferences; |
30 } | 30 } |
31 #endif | 31 #endif |
32 | 32 |
33 class NetPrefObserver; | 33 class NetPrefObserver; |
34 | 34 |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 | 290 |
291 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. | 291 scoped_refptr<history::TopSites> top_sites_; // For history and thumbnails. |
292 | 292 |
293 scoped_refptr<ChromeBlobStorageContext> blob_storage_context_; | 293 scoped_refptr<ChromeBlobStorageContext> blob_storage_context_; |
294 | 294 |
295 scoped_refptr<ExtensionInfoMap> extension_info_map_; | 295 scoped_refptr<ExtensionInfoMap> extension_info_map_; |
296 | 296 |
297 #if defined(OS_CHROMEOS) | 297 #if defined(OS_CHROMEOS) |
298 scoped_ptr<chromeos::Preferences> chromeos_preferences_; | 298 scoped_ptr<chromeos::Preferences> chromeos_preferences_; |
299 | 299 |
300 scoped_refptr<chromeos::ProxyConfigServiceImpl> | 300 scoped_ptr<chromeos::ProxyConfigServiceImpl> |
301 chromeos_proxy_config_service_impl_; | 301 chromeos_proxy_config_service_impl_; |
302 | 302 |
303 scoped_ptr<chromeos::EnterpriseExtensionObserver> | 303 scoped_ptr<chromeos::EnterpriseExtensionObserver> |
304 chromeos_enterprise_extension_observer_; | 304 chromeos_enterprise_extension_observer_; |
305 #endif | 305 #endif |
306 | 306 |
307 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 307 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
308 | 308 |
309 scoped_refptr<prerender::PrerenderManager> prerender_manager_; | 309 scoped_refptr<prerender::PrerenderManager> prerender_manager_; |
310 | 310 |
311 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 311 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
312 | 312 |
313 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 313 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
314 }; | 314 }; |
315 | 315 |
316 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 316 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |