diff options
author | Svetoslav Ganov <svetoslavganov@google.com> | 2012-09-21 17:12:07 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-09-21 17:12:08 -0700 |
commit | 0a48c1690bd0aa7901e8fc737ca9e4dadec22ea4 (patch) | |
tree | 0929ec6edc417feecf00e08eda11129e9ba6b278 /src | |
parent | f4bd1a705f6b4e1e575c46f88ca91c02144e551e (diff) | |
parent | 43af40be48aeb58cca7733a80bfb7a6424ec1f17 (diff) | |
download | packages_apps_Settings-0a48c1690bd0aa7901e8fc737ca9e4dadec22ea4.zip packages_apps_Settings-0a48c1690bd0aa7901e8fc737ca9e4dadec22ea4.tar.gz packages_apps_Settings-0a48c1690bd0aa7901e8fc737ca9e4dadec22ea4.tar.bz2 |
Merge "Remove accessibility category from developer options." into jb-mr1-dev
Diffstat (limited to 'src')
-rw-r--r-- | src/com/android/settings/DevelopmentSettings.java | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/com/android/settings/DevelopmentSettings.java b/src/com/android/settings/DevelopmentSettings.java index f590ea6..09d7f9b 100644 --- a/src/com/android/settings/DevelopmentSettings.java +++ b/src/com/android/settings/DevelopmentSettings.java @@ -98,8 +98,6 @@ public class DevelopmentSettings extends PreferenceFragment private static final String TRANSITION_ANIMATION_SCALE_KEY = "transition_animation_scale"; private static final String ANIMATOR_DURATION_SCALE_KEY = "animator_duration_scale"; private static final String OVERLAY_DISPLAY_DEVICES_KEY = "overlay_display_devices"; - private static final String ACCESSIBILITY_DISPLAY_MAGNIFICATION_AUTO_UPDATE_KEY = - "accessibility_display_magnification_auto_update"; private static final String ENABLE_TRACES_KEY = "enable_traces"; @@ -144,7 +142,6 @@ public class DevelopmentSettings extends PreferenceFragment private CheckBoxPreference mShowHwScreenUpdates; private CheckBoxPreference mShowHwLayersUpdates; private CheckBoxPreference mDebugLayout; - private CheckBoxPreference mDisplayMangificationAutoUpdate; private ListPreference mWindowAnimationScale; private ListPreference mTransitionAnimationScale; private ListPreference mAnimatorDurationScale; @@ -240,9 +237,6 @@ public class DevelopmentSettings extends PreferenceFragment mAllPrefs.add(hdcpChecking); } removeHdcpOptionsForProduction(); - - mDisplayMangificationAutoUpdate = findAndInitCheckboxPref( - ACCESSIBILITY_DISPLAY_MAGNIFICATION_AUTO_UPDATE_KEY); } private CheckBoxPreference findAndInitCheckboxPref(String key) { @@ -376,7 +370,6 @@ public class DevelopmentSettings extends PreferenceFragment updateImmediatelyDestroyActivitiesOptions(); updateAppProcessLimitOptions(); updateShowAllANRsOptions(); - updateDisplayMagnificationAutoUpdate(); } private void resetDangerousOptions() { @@ -630,12 +623,6 @@ public class DevelopmentSettings extends PreferenceFragment pokeSystemProperties(); } - private void writeDisplayMagnificationAutoUpdate() { - Settings.Secure.putInt(getActivity().getContentResolver(), - Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_AUTO_UPDATE, - mDisplayMangificationAutoUpdate.isChecked() ? 1 : 0); - } - private void updateCpuUsageOptions() { updateCheckBox(mShowCpuUsage, Settings.System.getInt(getActivity().getContentResolver(), Settings.System.SHOW_PROCESSES, 0) != 0); @@ -769,12 +756,6 @@ public class DevelopmentSettings extends PreferenceFragment getActivity().getContentResolver(), Settings.Secure.ANR_SHOW_BACKGROUND, 0) != 0); } - private void updateDisplayMagnificationAutoUpdate() { - updateCheckBox(mDisplayMangificationAutoUpdate, - Settings.Secure.getInt(getActivity().getContentResolver(), - Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_AUTO_UPDATE, 0) != 0); - } - private void updateEnableTracesOptions() { long flags = SystemProperties.getLong(Trace.PROPERTY_TRACE_TAG_ENABLEFLAGS, 0); String[] values = mEnableTracesPref.getEntryValues(); @@ -928,8 +909,6 @@ public class DevelopmentSettings extends PreferenceFragment writeShowHwLayersUpdatesOptions(); } else if (preference == mDebugLayout) { writeDebugLayoutOptions(); - } else if (preference == mDisplayMangificationAutoUpdate) { - writeDisplayMagnificationAutoUpdate(); } return false; |