blob: c318f199a9f8ed0028e61f0688476fc0545697ba [file] [log] [blame]
// Copyright 2015 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 IOS_CHROME_BROWSER_PREFS_BROWSER_PREFS_H_
#define IOS_CHROME_BROWSER_PREFS_BROWSER_PREFS_H_
class PrefRegistrySimple;
class PrefService;
namespace user_prefs {
class PrefRegistrySyncable;
}
// Registers all prefs that will be used via the local state PrefService.
void RegisterLocalStatePrefs(PrefRegistrySimple* registry);
// Registers all prefs that will be used via a PrefService attached to a
// browser state.
void RegisterBrowserStatePrefs(user_prefs::PrefRegistrySyncable* registry);
// Migrate/cleanup deprecated prefs in local state. Over time, long deprecated
// prefs should be removed as new ones are added, but this call should never go
// away (even if it becomes an empty call for some time) as it should remain
// *the* place to drop deprecated local state prefs at.
void MigrateObsoleteLocalStatePrefs(PrefService* prefs);
// Migrate/cleanup deprecated prefs in the browser state's pref store. Over
// time, long deprecated prefs should be removed as new ones are added, but this
// call should never go away (even if it becomes an empty call for some time) as
// it should remain *the* place to drop deprecated browser state's prefs at.
void MigrateObsoleteBrowserStatePrefs(PrefService* prefs);
#endif // IOS_CHROME_BROWSER_PREFS_BROWSER_PREFS_H_