Home | History | Annotate | Download | only in settings

Lines Matching refs:upgrade

24  * The SettingsUpgrader class can be used to define an upgrade flow that
25 * executes upgrade logic to a target version when a version number has changed.
48 * Execute an upgrade callback if an upgrade version has changed. Third
49 * party modules also use this to upgrade settings local to them.
51 public void upgrade(SettingsManager settingsManager) {
54 upgrade(settingsManager, lastVersion, mTargetVersion);
63 * than some known version for a particular setting, and apply upgrade logic
66 protected abstract void upgrade(SettingsManager settingsManager, int lastVersion,
72 * Upgrader may need to perform an upgrade analysis on the version
86 * This is used in the upgrade path to change all underlying
88 * modules to upgrade their boolean settings to Strings.
105 * This is used in the upgrade path to change all underlying
107 * modules to upgrade their Integer settings to Strings.
124 * This is used in the upgrade path to change all underlying
126 * modules to upgrade their boolean settings to Strings.