| 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 <string> |
| 12 |
| 11 #include "base/file_path.h" | 13 #include "base/file_path.h" |
| 12 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/timer.h" | 16 #include "base/timer.h" |
| 15 #include "chrome/browser/prefs/pref_change_registrar.h" | 17 #include "chrome/browser/prefs/pref_change_registrar.h" |
| 16 #include "chrome/browser/profiles/profile.h" | 18 #include "chrome/browser/profiles/profile.h" |
| 17 #include "chrome/browser/profiles/profile_impl_io_data.h" | 19 #include "chrome/browser/profiles/profile_impl_io_data.h" |
| 18 #include "content/public/browser/notification_observer.h" | 20 #include "content/public/browser/notification_observer.h" |
| 19 #include "content/public/browser/notification_registrar.h" | 21 #include "content/public/browser/notification_registrar.h" |
| 20 | 22 |
| 21 class ExtensionNavigationObserver; | 23 class ExtensionNavigationObserver; |
| 22 class ExtensionPrefs; | 24 class ExtensionPrefs; |
| 23 class ExtensionPrefValueMap; | 25 class ExtensionPrefValueMap; |
| 24 class ExtensionSettings; | |
| 25 class NetPrefObserver; | 26 class NetPrefObserver; |
| 26 class PrefService; | 27 class PrefService; |
| 28 class ProfileSyncFactory; |
| 29 class PromoResourceService; |
| 27 class SpeechInputPreferences; | 30 class SpeechInputPreferences; |
| 28 class SpellCheckProfile; | 31 class SpellCheckProfile; |
| 32 class SSLConfigServiceManager; |
| 33 class VisitedLinkEventListener; |
| 29 | 34 |
| 30 #if defined(OS_CHROMEOS) | 35 #if defined(OS_CHROMEOS) |
| 31 namespace chromeos { | 36 namespace chromeos { |
| 32 class EnterpriseExtensionObserver; | 37 class EnterpriseExtensionObserver; |
| 33 class LocaleChangeGuard; | 38 class LocaleChangeGuard; |
| 34 class Preferences; | 39 class Preferences; |
| 35 } | 40 } |
| 36 #endif | 41 #endif |
| 37 | 42 |
| 38 // The default profile implementation. | 43 // The default profile implementation. |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; | 296 scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_; |
| 292 | 297 |
| 293 Profile::Delegate* delegate_; | 298 Profile::Delegate* delegate_; |
| 294 | 299 |
| 295 chrome_browser_net::Predictor* predictor_; | 300 chrome_browser_net::Predictor* predictor_; |
| 296 | 301 |
| 297 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 302 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 298 }; | 303 }; |
| 299 | 304 |
| 300 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 305 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |