diff options
author | Svetoslav Ganov <svetoslavganov@google.com> | 2011-09-21 19:06:26 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-09-21 19:06:26 -0700 |
commit | 624181af38f7f9e4fe4a18ca3e15204f30609312 (patch) | |
tree | ff13840de890eb7403914841a761762d706bfed7 /core/java/android/provider/Settings.java | |
parent | 90fb9aa93a350d5571a378923c2566f48e44ad3e (diff) | |
parent | a571a5836cdbc71feefb13648004b8ca7fe05dfb (diff) | |
download | frameworks_base-624181af38f7f9e4fe4a18ca3e15204f30609312.zip frameworks_base-624181af38f7f9e4fe4a18ca3e15204f30609312.tar.gz frameworks_base-624181af38f7f9e4fe4a18ca3e15204f30609312.tar.bz2 |
Merge "Settings are restored in alphabetical order rather in order of dependency." into ics-factoryrom
Diffstat (limited to 'core/java/android/provider/Settings.java')
-rw-r--r-- | core/java/android/provider/Settings.java | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index bc5994e..bc05078 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -1882,6 +1882,11 @@ public final class Settings { /** * Settings to backup. This is here so that it's in the same place as the settings * keys and easy to update. + * + * NOTE: Settings are backed up and restored in the order they appear + * in this array. If you have one setting depending on another, + * make sure that they are ordered appropriately. + * * @hide */ public static final String[] SETTINGS_TO_BACKUP = { @@ -4048,6 +4053,12 @@ public final class Settings { public static final String PACKAGE_VERIFIER_TIMEOUT = "verifier_timeout"; /** + * This are the settings to be backed up. + * + * NOTE: Settings are backed up and restored in the order they appear + * in this array. If you have one setting depending on another, + * make sure that they are ordered appropriately. + * * @hide */ public static final String[] SETTINGS_TO_BACKUP = { @@ -4056,11 +4067,11 @@ public final class Settings { PARENTAL_CONTROL_ENABLED, PARENTAL_CONTROL_REDIRECT_URL, USB_MASS_STORAGE_ENABLED, - ACCESSIBILITY_ENABLED, ACCESSIBILITY_SCRIPT_INJECTION, BACKUP_AUTO_RESTORE, ENABLED_ACCESSIBILITY_SERVICES, TOUCH_EXPLORATION_ENABLED, + ACCESSIBILITY_ENABLED, TTS_USE_DEFAULTS, TTS_DEFAULT_RATE, TTS_DEFAULT_PITCH, |