| Index: chrome/browser/prefs/profile_pref_store_manager.h
|
| diff --git a/chrome/browser/prefs/profile_pref_store_manager.h b/chrome/browser/prefs/profile_pref_store_manager.h
|
| index c79ef0b012208d333caecad642f4c34eccb0803e..3fe593c0f9ec4ecd3d393e37c59eddd13cb565b4 100644
|
| --- a/chrome/browser/prefs/profile_pref_store_manager.h
|
| +++ b/chrome/browser/prefs/profile_pref_store_manager.h
|
| @@ -54,8 +54,7 @@ class ProfilePrefStoreManager {
|
| tracking_configuration,
|
| size_t reporting_ids_count,
|
| const std::string& seed,
|
| - const std::string& legacy_device_id,
|
| - PrefService* local_state);
|
| + const std::string& legacy_device_id);
|
|
|
| ~ProfilePrefStoreManager();
|
|
|
| @@ -89,7 +88,7 @@ class ProfilePrefStoreManager {
|
| // An optional |validation_delegate| will be notified
|
| // of the status of each tracked preference as they are checked.
|
| PersistentPrefStore* CreateProfilePrefStore(
|
| - const scoped_refptr<base::SequencedTaskRunner>& io_task_runner,
|
| + scoped_refptr<base::SequencedTaskRunner> io_task_runner,
|
| const base::Closure& on_reset_on_load,
|
| prefs::mojom::TrackedPreferenceValidationDelegate* validation_delegate);
|
|
|
| @@ -105,13 +104,6 @@ class ProfilePrefStoreManager {
|
| const scoped_refptr<base::SequencedTaskRunner>& io_task_runner);
|
|
|
| private:
|
| - // Returns a PrefHashStore for the managed profile. Should only be called
|
| - // if |kPlatformSupportsPreferenceTracking|. |use_super_mac| determines
|
| - // whether the returned object will calculate, store, and validate super MACs
|
| - // (and, by extension, accept non-null newly protected preferences as
|
| - // TrustedInitialized).
|
| - std::unique_ptr<PrefHashStore> GetPrefHashStore(bool use_super_mac);
|
| -
|
| // Returns a PrefHashStore and HashStoreContents which can be be used for
|
| // extra out-of-band verifications, or nullptrs if not available on this
|
| // platform.
|
| @@ -124,7 +116,6 @@ class ProfilePrefStoreManager {
|
| const size_t reporting_ids_count_;
|
| const std::string seed_;
|
| const std::string legacy_device_id_;
|
| - PrefService* local_state_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ProfilePrefStoreManager);
|
| };
|
|
|