Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: chrome/browser/prefs/profile_pref_store_manager.h

Issue 2743463002: WIP: Pref service user prefs. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_PROFILE_PREF_STORE_MANAGER_H_ 5 #ifndef CHROME_BROWSER_PREFS_PROFILE_PREF_STORE_MANAGER_H_
6 #define CHROME_BROWSER_PREFS_PROFILE_PREF_STORE_MANAGER_H_ 6 #define CHROME_BROWSER_PREFS_PROFILE_PREF_STORE_MANAGER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/files/file_path.h" 14 #include "base/files/file_path.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
17 #include "components/user_prefs/tracked/pref_hash_filter.h" 17 #include "components/user_prefs/tracked/pref_hash_filter.h"
18 #include "services/preferences/public/interfaces/preferences.mojom.h"
19 #include "services/preferences/public/interfaces/tracked_preference_validation_d elegate.mojom.h"
18 20
19 class HashStoreContents; 21 class HashStoreContents;
20 class PersistentPrefStore; 22 class PersistentPrefStore;
21 class PrefHashStore; 23 class PrefHashStore;
22 class PrefService; 24 class PrefService;
23 25
24 namespace base { 26 namespace base {
25 class DictionaryValue; 27 class DictionaryValue;
26 class SequencedTaskRunner; 28 class SequencedTaskRunner;
29 class SingleThreadTaskRunner;
27 } // namespace base 30 } // namespace base
28 31
29 namespace prefs { 32 namespace prefs {
30 namespace mojom { 33 namespace mojom {
31 class TrackedPreferenceValidationDelegate; 34 class TrackedPreferenceValidationDelegate;
32 } 35 }
33 } 36 }
34 37
38 namespace service_manager {
39 class Connector;
40 }
41
35 namespace user_prefs { 42 namespace user_prefs {
36 class PrefRegistrySyncable; 43 class PrefRegistrySyncable;
37 } // namespace user_prefs 44 } // namespace user_prefs
38 45
39 // Provides a facade through which the user preference store may be accessed and 46 // Provides a facade through which the user preference store may be accessed and
40 // managed. 47 // managed.
41 class ProfilePrefStoreManager { 48 class ProfilePrefStoreManager {
42 public: 49 public:
43 // Instantiates a ProfilePrefStoreManager with the configuration required to 50 // Instantiates a ProfilePrefStoreManager with the configuration required to
44 // manage the user preferences of the profile at |profile_path|. 51 // manage the user preferences of the profile at |profile_path|.
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 static void SetPreferenceValidationRegistryPathForTesting( 89 static void SetPreferenceValidationRegistryPathForTesting(
83 const base::string16* path); 90 const base::string16* path);
84 #endif 91 #endif
85 92
86 // Creates a PersistentPrefStore providing access to the user preferences of 93 // Creates a PersistentPrefStore providing access to the user preferences of
87 // the managed profile. If |on_reset| is provided, it will be invoked if a 94 // the managed profile. If |on_reset| is provided, it will be invoked if a
88 // reset occurs as a result of loading the profile's prefs. 95 // reset occurs as a result of loading the profile's prefs.
89 // An optional |validation_delegate| will be notified 96 // An optional |validation_delegate| will be notified
90 // of the status of each tracked preference as they are checked. 97 // of the status of each tracked preference as they are checked.
91 PersistentPrefStore* CreateProfilePrefStore( 98 PersistentPrefStore* CreateProfilePrefStore(
99 const scoped_refptr<base::SingleThreadTaskRunner>& pref_task_runner,
92 const scoped_refptr<base::SequencedTaskRunner>& io_task_runner, 100 const scoped_refptr<base::SequencedTaskRunner>& io_task_runner,
93 const base::Closure& on_reset_on_load, 101 const base::Closure& on_reset_on_load,
94 prefs::mojom::TrackedPreferenceValidationDelegate* validation_delegate); 102 std::unique_ptr<prefs::mojom::TrackedPreferenceValidationDelegate>*
103 validation_delegate,
104 service_manager::Connector* connector);
95 105
96 // Initializes the preferences for the managed profile with the preference 106 // Initializes the preferences for the managed profile with the preference
97 // values in |master_prefs|. Acts synchronously, including blocking IO. 107 // values in |master_prefs|. Acts synchronously, including blocking IO.
98 // Returns true on success. 108 // Returns true on success.
99 bool InitializePrefsFromMasterPrefs( 109 bool InitializePrefsFromMasterPrefs(
100 std::unique_ptr<base::DictionaryValue> master_prefs); 110 std::unique_ptr<base::DictionaryValue> master_prefs);
101 111
102 // Creates a single-file PrefStore as was used in M34 and earlier. Used only 112 // Creates a single-file PrefStore as was used in M34 and earlier. Used only
103 // for testing migration. 113 // for testing migration.
104 PersistentPrefStore* CreateDeprecatedCombinedProfilePrefStore( 114 PersistentPrefStore* CreateDeprecatedCombinedProfilePrefStore(
105 const scoped_refptr<base::SequencedTaskRunner>& io_task_runner); 115 const scoped_refptr<base::SequencedTaskRunner>& io_task_runner);
106 116
107 private: 117 private:
108 // Returns a PrefHashStore for the managed profile. Should only be called 118 // Returns a PrefHashStore for the managed profile. Should only be called
109 // if |kPlatformSupportsPreferenceTracking|. |use_super_mac| determines 119 // if |kPlatformSupportsPreferenceTracking|. |use_super_mac| determines
110 // whether the returned object will calculate, store, and validate super MACs 120 // whether the returned object will calculate, store, and validate super MACs
111 // (and, by extension, accept non-null newly protected preferences as 121 // (and, by extension, accept non-null newly protected preferences as
112 // TrustedInitialized). 122 // TrustedInitialized).
113 std::unique_ptr<PrefHashStore> GetPrefHashStore(bool use_super_mac); 123 std::unique_ptr<PrefHashStore> GetPrefHashStore(bool use_super_mac);
114 124
115 // Returns a PrefHashStore and HashStoreContents which can be be used for 125 // Returns a PrefHashStore and HashStoreContents which can be be used for
116 // extra out-of-band verifications, or nullptrs if not available on this 126 // extra out-of-band verifications, or nullptrs if not available on this
117 // platform. 127 // platform.
118 std::pair<std::unique_ptr<PrefHashStore>, std::unique_ptr<HashStoreContents>> 128 std::pair<std::unique_ptr<PrefHashStore>, std::unique_ptr<HashStoreContents>>
119 GetExternalVerificationPrefHashStorePair(); 129 GetExternalVerificationPrefHashStorePair();
120 130
131 // Connects to the pref service over mojo and configures it.
132 void ConfigurePrefServiceUserPrefs(
133 const base::Closure& on_reset_on_load,
134 std::unique_ptr<prefs::mojom::TrackedPreferenceValidationDelegate>
135 validation_delegate,
136 service_manager::Connector* connector);
137
121 const base::FilePath profile_path_; 138 const base::FilePath profile_path_;
122 const std::vector<PrefHashFilter::TrackedPreferenceMetadata> 139 const std::vector<PrefHashFilter::TrackedPreferenceMetadata>
123 tracking_configuration_; 140 tracking_configuration_;
124 const size_t reporting_ids_count_; 141 const size_t reporting_ids_count_;
125 const std::string seed_; 142 const std::string seed_;
126 const std::string legacy_device_id_; 143 const std::string legacy_device_id_;
127 PrefService* local_state_; 144 PrefService* local_state_;
128 145
129 DISALLOW_COPY_AND_ASSIGN(ProfilePrefStoreManager); 146 DISALLOW_COPY_AND_ASSIGN(ProfilePrefStoreManager);
130 }; 147 };
131 148
132 #endif // CHROME_BROWSER_PREFS_PROFILE_PREF_STORE_MANAGER_H_ 149 #endif // CHROME_BROWSER_PREFS_PROFILE_PREF_STORE_MANAGER_H_
OLDNEW
« no previous file with comments | « chrome/browser/prefs/chrome_pref_service_factory.cc ('k') | chrome/browser/prefs/profile_pref_store_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698