| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_ | 5 #ifndef CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_ |
| 6 #define CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_ | 6 #define CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace sync_preferences { | 23 namespace sync_preferences { |
| 24 class PrefServiceSyncable; | 24 class PrefServiceSyncable; |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace user_prefs { | 27 namespace user_prefs { |
| 28 class PrefRegistrySyncable; | 28 class PrefRegistrySyncable; |
| 29 } | 29 } |
| 30 | 30 |
| 31 class PrefHashStore; | |
| 32 class PrefRegistry; | 31 class PrefRegistry; |
| 33 class PrefRegistrySimple; | |
| 34 class PrefService; | 32 class PrefService; |
| 35 | 33 |
| 36 class PrefStore; | 34 class PrefStore; |
| 37 class Profile; | 35 class Profile; |
| 38 class SupervisedUserSettingsService; | 36 class SupervisedUserSettingsService; |
| 39 class TrackedPreferenceValidationDelegate; | 37 class TrackedPreferenceValidationDelegate; |
| 40 | 38 |
| 41 namespace chrome_prefs { | 39 namespace chrome_prefs { |
| 42 | 40 |
| 43 namespace internals { | 41 namespace internals { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 // Clears the time of the last preference reset event, if any, for the provided | 97 // Clears the time of the last preference reset event, if any, for the provided |
| 100 // profile. | 98 // profile. |
| 101 void ClearResetTime(Profile* profile); | 99 void ClearResetTime(Profile* profile); |
| 102 | 100 |
| 103 // Register user prefs used by chrome preference system. | 101 // Register user prefs used by chrome preference system. |
| 104 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); | 102 void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
| 105 | 103 |
| 106 } // namespace chrome_prefs | 104 } // namespace chrome_prefs |
| 107 | 105 |
| 108 #endif // CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_ | 106 #endif // CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_ |
| OLD | NEW |