// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_ #define CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_ #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" namespace base { class DictionaryValue; class FilePath; class SequencedTaskRunner; } namespace policy { class PolicyService; } namespace user_prefs { class PrefRegistrySyncable; } class ManagedUserSettingsService; class PrefHashStore; class PrefRegistry; class PrefRegistrySimple; class PrefService; class PrefServiceSyncable; class PrefStore; namespace chrome_prefs { // Factory methods that create and initialize a new instance of a // PrefService for Chrome with the applicable PrefStores. The // |pref_filename| points to the user preference file. This is the // usual way to create a new PrefService. // |extension_pref_store| is used as the source for extension-controlled // preferences and may be NULL. // |policy_service| is used as the source for mandatory or recommended // policies. // |pref_registry| keeps the list of registered prefs and their default values. // If |async| is true, asynchronous version is used. // Notifies using PREF_INITIALIZATION_COMPLETED in the end. Details is set to // the created PrefService or NULL if creation has failed. Note, it is // guaranteed that in asynchronous version initialization happens after this // function returned. scoped_ptr CreateLocalState( const base::FilePath& pref_filename, base::SequencedTaskRunner* pref_io_task_runner, policy::PolicyService* policy_service, const scoped_refptr& pref_registry, bool async); scoped_ptr CreateProfilePrefs( const base::FilePath& pref_filename, base::SequencedTaskRunner* pref_io_task_runner, policy::PolicyService* policy_service, ManagedUserSettingsService* managed_user_settings, const scoped_refptr& extension_prefs, const scoped_refptr& pref_registry, bool async); // Schedules verification of the path resolution of the preferences file under // |profile_path|. void SchedulePrefsFilePathVerification(const base::FilePath& profile_path); // Initializes the PrefHashStore for the profile preferences file under // |profile_path| without actually loading that profile. void InitializePrefHashStoreIfRequired( const base::FilePath& profile_path); // Resets the contents of the preference hash store for the profile at // |profile_path|. void ResetPrefHashStore(const base::FilePath& profile_path); // Initializes the preferences for the profile at |profile_path| with the // preference values in |master_prefs|. Returns true on success. bool InitializePrefsFromMasterPrefs( const base::FilePath& profile_path, const base::DictionaryValue& master_prefs); // Register local state prefs used by chrome preference system. void RegisterPrefs(PrefRegistrySimple* registry); } // namespace chrome_prefs #endif // CHROME_BROWSER_PREFS_CHROME_PREF_SERVICE_FACTORY_H_