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 "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 | 10 |
11 namespace base { | 11 namespace base { |
12 class DictionaryValue; | 12 class DictionaryValue; |
13 class FilePath; | 13 class FilePath; |
14 class SequencedTaskRunner; | 14 class SequencedTaskRunner; |
15 } | 15 } |
16 | 16 |
17 namespace policy { | 17 namespace policy { |
18 class PolicyService; | 18 class PolicyService; |
19 } | 19 } |
20 | 20 |
21 namespace user_prefs { | 21 namespace user_prefs { |
22 class PrefRegistrySyncable; | 22 class PrefRegistrySyncable; |
23 } | 23 } |
24 | 24 |
25 class ManagedUserSettingsService; | 25 class ManagedUserSettingsService; |
26 class PrefHashStore; | 26 class PrefHashStore; |
27 class PrefRegistry; | 27 class PrefRegistry; |
| 28 class PrefRegistrySimple; |
28 class PrefService; | 29 class PrefService; |
29 class PrefServiceSyncable; | 30 class PrefServiceSyncable; |
30 class PrefStore; | 31 class PrefStore; |
31 | 32 |
32 namespace chrome_prefs { | 33 namespace chrome_prefs { |
33 | 34 |
34 // Factory methods that create and initialize a new instance of a | 35 // Factory methods that create and initialize a new instance of a |
35 // PrefService for Chrome with the applicable PrefStores. The | 36 // PrefService for Chrome with the applicable PrefStores. The |
36 // |pref_filename| points to the user preference file. This is the | 37 // |pref_filename| points to the user preference file. This is the |
37 // usual way to create a new PrefService. | 38 // usual way to create a new PrefService. |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 // Resets the contents of the preference hash store for the profile at | 75 // Resets the contents of the preference hash store for the profile at |
75 // |profile_path|. | 76 // |profile_path|. |
76 void ResetPrefHashStore(const base::FilePath& profile_path); | 77 void ResetPrefHashStore(const base::FilePath& profile_path); |
77 | 78 |
78 // Initializes the preferences for the profile at |profile_path| with the | 79 // Initializes the preferences for the profile at |profile_path| with the |
79 // preference values in |master_prefs|. Returns true on success. | 80 // preference values in |master_prefs|. Returns true on success. |
80 bool InitializePrefsFromMasterPrefs( | 81 bool InitializePrefsFromMasterPrefs( |
81 const base::FilePath& profile_path, | 82 const base::FilePath& profile_path, |
82 const base::DictionaryValue& master_prefs); | 83 const base::DictionaryValue& master_prefs); |
83 | 84 |
| 85 // Register local state prefs used by chrome preference system. |
| 86 void RegisterPrefs(PrefRegistrySimple* registry); |
| 87 |
84 } // namespace chrome_prefs | 88 } // namespace chrome_prefs |
85 | 89 |
86 #endif // CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_ | 90 #endif // CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_ |
OLD | NEW |