From 9734639366b2ace66648522d061f69d26e01a6c1 Mon Sep 17 00:00:00 2001 From: Adnan Begovic Date: Wed, 23 Dec 2015 10:31:17 -0800 Subject: [PATCH] cmsdk: Fix quick pulldown settings, and unhide numerous system settings. Change-Id: Ibfc41a74ca5e5902ea704919ce076d8442258406 --- .../cmsettings/CMDatabaseHelper.java | 2 +- .../cyanogenmod/providers/CMSettings.java | 161 +++++------------- 2 files changed, 46 insertions(+), 117 deletions(-) diff --git a/packages/CMSettingsProvider/src/org/cyanogenmod/cmsettings/CMDatabaseHelper.java b/packages/CMSettingsProvider/src/org/cyanogenmod/cmsettings/CMDatabaseHelper.java index 506ada6..ce4c4a2 100644 --- a/packages/CMSettingsProvider/src/org/cyanogenmod/cmsettings/CMDatabaseHelper.java +++ b/packages/CMSettingsProvider/src/org/cyanogenmod/cmsettings/CMDatabaseHelper.java @@ -243,7 +243,7 @@ public class CMDatabaseHelper extends SQLiteOpenHelper{ private void loadSystemSettings(SQLiteDatabase db) { // System - loadIntegerSetting(db, CMTableNames.TABLE_SYSTEM, CMSettings.System.QS_QUICK_PULLDOWN, + loadIntegerSetting(db, CMTableNames.TABLE_SYSTEM, CMSettings.System.STATUS_BAR_QUICK_QS_PULLDOWN, R.integer.def_qs_quick_pulldown); loadIntegerSetting(db, CMTableNames.TABLE_SYSTEM, CMSettings.System.NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL, diff --git a/src/java/cyanogenmod/providers/CMSettings.java b/src/java/cyanogenmod/providers/CMSettings.java index f2b9f90..499bfb6 100644 --- a/src/java/cyanogenmod/providers/CMSettings.java +++ b/src/java/cyanogenmod/providers/CMSettings.java @@ -766,21 +766,9 @@ public final class CMSettings { // region System Settings - /** - * Quick Settings Quick Pulldown - * 0 = off, 1 = right, 2 = left - * @hide - */ - public static final String QS_QUICK_PULLDOWN = "qs_quick_pulldown"; - - /** @hide */ - public static final Validator QS_QUICK_PULLDOWN_VALIDATOR = - new InclusiveIntegerRangeValidator(0, 2); - /** * Whether to attach a queue to media notifications. * 0 = 0ff, 1 = on - * @hide */ public static final String NOTIFICATION_PLAY_QUEUE = "notification_play_queue"; @@ -790,7 +778,6 @@ public final class CMSettings { /** * Whether the HighTouchSensitivity is activated or not. * 0 = off, 1 = on - * @hide */ public static final String HIGH_TOUCH_SENSITIVITY_ENABLE = "high_touch_sensitivity_enable"; @@ -800,8 +787,8 @@ public final class CMSettings { sBooleanValidator; /** - * Show the pending notification counts as overlays on the status bar - * @hide + * Whether to enable system profiles feature + * 0 = off, 1 = on */ public static final String SYSTEM_PROFILES_ENABLED = "system_profiles_enabled"; @@ -817,7 +804,6 @@ public final class CMSettings { * 2: show the clock in the center * 3: show the clock in the left position (LTR) * default: 1 - * @hide */ public static final String STATUS_BAR_CLOCK = "status_bar_clock"; @@ -831,7 +817,6 @@ public final class CMSettings { * 1: Small display (Froyo stock) * 2: No display (Gingerbread/ICS stock) * default: 2 - * @hide */ public static final String STATUS_BAR_AM_PM = "status_bar_am_pm"; @@ -847,7 +832,6 @@ public final class CMSettings { * 5: Display the battery an icon in landscape mode * 6: Display the battery as plain text * default: 0 - * @hide */ public static final String STATUS_BAR_BATTERY_STYLE = "status_bar_battery_style"; @@ -860,7 +844,6 @@ public final class CMSettings { * 0: Hide the battery percentage * 1: Display the battery percentage inside the icon * 2: Display the battery percentage next to the icon - * @hide */ public static final String STATUS_BAR_SHOW_BATTERY_PERCENT = "status_bar_show_battery_percent"; @@ -871,7 +854,7 @@ public final class CMSettings { /** * Whether the phone ringtone should be played in an increasing manner - * @hide + * 0 = 0ff, 1 = on */ public static final String INCREASING_RING = "increasing_ring"; @@ -880,7 +863,6 @@ public final class CMSettings { /** * Start volume fraction for increasing ring volume - * @hide */ public static final String INCREASING_RING_START_VOLUME = "increasing_ring_start_vol"; @@ -890,7 +872,6 @@ public final class CMSettings { /** * Ramp up time (seconds) for increasing ring - * @hide */ public static final String INCREASING_RING_RAMP_UP_TIME = "increasing_ring_ramp_up_time"; @@ -901,7 +882,6 @@ public final class CMSettings { /** * Volume Adjust Sounds Enable, This is the noise made when using volume hard buttons * Defaults to 1 - sounds enabled - * @hide */ public static final String VOLUME_ADJUST_SOUNDS_ENABLED = "volume_adjust_sounds_enabled"; @@ -911,7 +891,6 @@ public final class CMSettings { /** * Navigation controls to Use - * @hide */ public static final String NAV_BUTTONS = "nav_buttons"; @@ -922,7 +901,6 @@ public final class CMSettings { /** * Volume key controls ringtone or media sound stream - * @hide */ public static final String VOLUME_KEYS_CONTROL_RING_STREAM = "volume_keys_control_ring_stream"; @@ -934,7 +912,6 @@ public final class CMSettings { /** * boolean value. toggles using arrow key locations on nav bar * as left and right dpad keys - * @hide */ public static final String NAVIGATION_BAR_MENU_ARROW_KEYS = "navigation_bar_menu_arrow_keys"; @@ -954,7 +931,6 @@ public final class CMSettings { * 6 - Launch Camera * 7 - Action Sleep * 8 - Last app - * @hide */ public static final String KEY_HOME_LONG_PRESS_ACTION = "key_home_long_press_action"; @@ -966,7 +942,6 @@ public final class CMSettings { * Action to perform when the home key is double-tapped. * (Default can be configured via config_doubleTapOnHomeBehavior) * (See KEY_HOME_LONG_PRESS_ACTION for valid values) - * @hide */ public static final String KEY_HOME_DOUBLE_TAP_ACTION = "key_home_double_tap_action"; @@ -976,7 +951,7 @@ public final class CMSettings { /** * Whether to wake the screen with the back key, the value is boolean. - * @hide + * 0 = 0ff, 1 = on */ public static final String BACK_WAKE_SCREEN = "back_wake_screen"; @@ -986,7 +961,7 @@ public final class CMSettings { /** * Whether to wake the screen with the menu key, the value is boolean. - * @hide + * 0 = 0ff, 1 = on */ public static final String MENU_WAKE_SCREEN = "menu_wake_screen"; @@ -996,7 +971,7 @@ public final class CMSettings { /** * Whether to wake the screen with the volume keys, the value is boolean. - * @hide + * 0 = 0ff, 1 = on */ public static final String VOLUME_WAKE_SCREEN = "volume_wake_screen"; @@ -1007,7 +982,6 @@ public final class CMSettings { /** * Action to perform when the menu key is pressed. (Default is 1) * (See KEY_HOME_LONG_PRESS_ACTION for valid values) - * @hide */ public static final String KEY_MENU_ACTION = "key_menu_action"; @@ -1019,7 +993,6 @@ public final class CMSettings { * Action to perform when the menu key is long-pressed. * (Default is 0 on devices with a search key, 3 on devices without) * (See KEY_HOME_LONG_PRESS_ACTION for valid values) - * @hide */ public static final String KEY_MENU_LONG_PRESS_ACTION = "key_menu_long_press_action"; @@ -1030,7 +1003,6 @@ public final class CMSettings { /** * Action to perform when the assistant (search) key is pressed. (Default is 3) * (See KEY_HOME_LONG_PRESS_ACTION for valid values) - * @hide */ public static final String KEY_ASSIST_ACTION = "key_assist_action"; @@ -1041,7 +1013,6 @@ public final class CMSettings { /** * Action to perform when the assistant (search) key is long-pressed. (Default is 4) * (See KEY_HOME_LONG_PRESS_ACTION for valid values) - * @hide */ public static final String KEY_ASSIST_LONG_PRESS_ACTION = "key_assist_long_press_action"; @@ -1052,7 +1023,6 @@ public final class CMSettings { /** * Action to perform when the app switch key is pressed. (Default is 2) * (See KEY_HOME_LONG_PRESS_ACTION for valid values) - * @hide */ public static final String KEY_APP_SWITCH_ACTION = "key_app_switch_action"; @@ -1063,7 +1033,6 @@ public final class CMSettings { /** * Action to perform when the app switch key is long-pressed. (Default is 0) * (See KEY_HOME_LONG_PRESS_ACTION for valid values) - * @hide */ public static final String KEY_APP_SWITCH_LONG_PRESS_ACTION = "key_app_switch_long_press_action"; @@ -1073,7 +1042,7 @@ public final class CMSettings { /** * Whether to wake the screen with the home key, the value is boolean. - * @hide + * 0 = 0ff, 1 = on */ public static final String HOME_WAKE_SCREEN = "home_wake_screen"; @@ -1083,7 +1052,7 @@ public final class CMSettings { /** * Whether to wake the screen with the assist key, the value is boolean. - * @hide + * 0 = 0ff, 1 = on */ public static final String ASSIST_WAKE_SCREEN = "assist_wake_screen"; @@ -1093,7 +1062,7 @@ public final class CMSettings { /** * Whether to wake the screen with the app switch key, the value is boolean. - * @hide + * 0 = 0ff, 1 = on */ public static final String APP_SWITCH_WAKE_SCREEN = "app_switch_wake_screen"; @@ -1103,7 +1072,7 @@ public final class CMSettings { /** * Whether to wake the screen with the camera key half-press. - * @hide + * 0 = 0ff, 1 = on */ public static final String CAMERA_WAKE_SCREEN = "camera_wake_screen"; @@ -1113,7 +1082,7 @@ public final class CMSettings { /** * Whether or not to send device back to sleep if Camera button is released ("Peek") - * @hide + * 0 = 0ff, 1 = on */ public static final String CAMERA_SLEEP_ON_RELEASE = "camera_sleep_on_release"; @@ -1123,7 +1092,7 @@ public final class CMSettings { /** * Whether to launch secure camera app when key is longpressed - * @hide + * 0 = 0ff, 1 = on */ public static final String CAMERA_LAUNCH = "camera_launch"; @@ -1136,7 +1105,6 @@ public final class CMSettings { * 0 - Disabled * 1 - Enabled (screen is rotated by 90 or 180 degrees: phone, hybrid) * 2 - Enabled (screen is rotated by 180 or 270 degrees: tablet) - * @hide */ public static final String SWAP_VOLUME_KEYS_ON_ROTATION = "swap_volume_keys_on_rotation"; @@ -1147,7 +1115,6 @@ public final class CMSettings { /** * Whether the battery light should be enabled (if hardware supports it) * The value is boolean (1 or 0). - * @hide */ public static final String BATTERY_LIGHT_ENABLED = "battery_light_enabled"; @@ -1158,7 +1125,6 @@ public final class CMSettings { /** * Whether the battery LED should repeatedly flash when the battery is low * on charge. The value is boolean (1 or 0). - * @hide */ public static final String BATTERY_LIGHT_PULSE = "battery_light_pulse"; @@ -1168,7 +1134,6 @@ public final class CMSettings { /** * What color to use for the battery LED while charging - low - * @hide */ public static final String BATTERY_LIGHT_LOW_COLOR = "battery_light_low_color"; @@ -1178,7 +1143,6 @@ public final class CMSettings { /** * What color to use for the battery LED while charging - medium - * @hide */ public static final String BATTERY_LIGHT_MEDIUM_COLOR = "battery_light_medium_color"; @@ -1188,7 +1152,6 @@ public final class CMSettings { /** * What color to use for the battery LED while charging - full - * @hide */ public static final String BATTERY_LIGHT_FULL_COLOR = "battery_light_full_color"; @@ -1208,7 +1171,7 @@ public final class CMSettings { /** * Check the proximity sensor during wakeup - * @hide + * 0 = 0ff, 1 = on */ public static final String PROXIMITY_ON_WAKE = "proximity_on_wake"; @@ -1218,8 +1181,7 @@ public final class CMSettings { /** * Enable looking up of phone numbers of nearby places - * - * @hide + * 0 = 0ff, 1 = on */ public static final String ENABLE_FORWARD_LOOKUP = "enable_forward_lookup"; @@ -1229,8 +1191,7 @@ public final class CMSettings { /** * Enable looking up of phone numbers of people - * - * @hide + * 0 = 0ff, 1 = on */ public static final String ENABLE_PEOPLE_LOOKUP = "enable_people_lookup"; @@ -1240,8 +1201,7 @@ public final class CMSettings { /** * Enable looking up of information of phone numbers not in the contacts - * - * @hide + * 0 = 0ff, 1 = on */ public static final String ENABLE_REVERSE_LOOKUP = "enable_reverse_lookup"; @@ -1250,9 +1210,7 @@ public final class CMSettings { sBooleanValidator; /** - * The forward lookup provider - * - * @hide + * The forward lookup provider to be utilized by the Dialer */ public static final String FORWARD_LOOKUP_PROVIDER = "forward_lookup_provider"; @@ -1260,9 +1218,7 @@ public final class CMSettings { public static final Validator FORWARD_LOOKUP_PROVIDER_VALIDATOR = sAlwaysTrueValidator; /** - * The people lookup provider - * - * @hide + * The people lookup provider to be utilized by the Dialer */ public static final String PEOPLE_LOOKUP_PROVIDER = "people_lookup_provider"; @@ -1270,9 +1226,7 @@ public final class CMSettings { public static final Validator PEOPLE_LOOKUP_PROVIDER_VALIDATOR = sAlwaysTrueValidator; /** - * The reverse lookup provider - * - * @hide + * The reverse lookup provider to be utilized by the Dialer */ public static final String REVERSE_LOOKUP_PROVIDER = "reverse_lookup_provider"; @@ -1280,9 +1234,7 @@ public final class CMSettings { public static final Validator REVERSE_LOOKUP_PROVIDER_VALIDATOR = sAlwaysTrueValidator; /** - * The OpenCNAM paid account ID - * - * @hide + * The OpenCNAM paid account ID to be utilized by the Dialer */ public static final String DIALER_OPENCNAM_ACCOUNT_SID = "dialer_opencnam_account_sid"; @@ -1291,9 +1243,7 @@ public final class CMSettings { sAlwaysTrueValidator; /** - * The OpenCNAM authentication token - * - * @hide + * The OpenCNAM authentication token to be utilized by the Dialer */ public static final String DIALER_OPENCNAM_AUTH_TOKEN = "dialer_opencnam_auth_token"; @@ -1303,7 +1253,6 @@ public final class CMSettings { /** * Color temperature of the display during the day - * @hide */ public static final String DISPLAY_TEMPERATURE_DAY = "display_temperature_day"; @@ -1313,7 +1262,6 @@ public final class CMSettings { /** * Color temperature of the display at night - * @hide */ public static final String DISPLAY_TEMPERATURE_NIGHT = "display_temperature_night"; @@ -1323,7 +1271,6 @@ public final class CMSettings { /** * Display color temperature adjustment mode, one of DAY (default), NIGHT, or AUTO. - * @hide */ public static final String DISPLAY_TEMPERATURE_MODE = "display_temperature_mode"; @@ -1333,7 +1280,7 @@ public final class CMSettings { /** * Automatic outdoor mode - * @hide + * 0 = 0ff, 1 = on */ public static final String DISPLAY_AUTO_OUTDOOR_MODE = "display_auto_outdoor_mode"; @@ -1343,7 +1290,7 @@ public final class CMSettings { /** * Use display power saving features such as CABC or CABL - * @hide + * 0 = 0ff, 1 = on */ public static final String DISPLAY_LOW_POWER = "display_low_power"; @@ -1353,7 +1300,7 @@ public final class CMSettings { /** * Use color enhancement feature of display - * @hide + * 0 = 0ff, 1 = on */ public static final String DISPLAY_COLOR_ENHANCE = "display_color_enhance"; @@ -1363,7 +1310,6 @@ public final class CMSettings { /** * Manual display color adjustments (RGB values as floats, separated by spaces) - * @hide */ public static final String DISPLAY_COLOR_ADJUSTMENT = "display_color_adjustment"; @@ -1397,7 +1343,7 @@ public final class CMSettings { /** * Enable statusbar double tap gesture on to put device to sleep - * @hide + * 0 = 0ff, 1 = on */ public static final String DOUBLE_TAP_SLEEP_GESTURE = "double_tap_sleep_gesture"; @@ -1407,7 +1353,7 @@ public final class CMSettings { /** * Boolean value on whether to show weather in the statusbar - * @hide + * 0 = 0ff, 1 = on */ public static final String STATUS_BAR_SHOW_WEATHER = "status_bar_show_weather"; @@ -1417,7 +1363,7 @@ public final class CMSettings { /** * Show search bar in recents - * @hide + * 0 = 0ff, 1 = on */ public static final String RECENTS_SHOW_SEARCH_BAR = "recents_show_search_bar"; @@ -1427,7 +1373,7 @@ public final class CMSettings { /** * Whether navigation bar is placed on the left side in landscape mode - * @hide + * 0 = 0ff, 1 = on */ public static final String NAVBAR_LEFT_IN_LANDSCAPE = "navigation_bar_left"; @@ -1437,7 +1383,6 @@ public final class CMSettings { /** * Locale for secondary overlay on dialer for t9 search input - * @hide */ public static final String T9_SEARCH_INPUT_LOCALE = "t9_search_input_locale"; @@ -1453,7 +1398,7 @@ public final class CMSettings { /** * If all file types can be accepted over Bluetooth OBEX. - * @hide + * 0 = 0ff, 1 = on */ public static final String BLUETOOTH_ACCEPT_ALL_FILES = "bluetooth_accept_all_files"; @@ -1464,7 +1409,7 @@ public final class CMSettings { /** * Whether to scramble a pin unlock layout - * @hide + * 0 = 0ff, 1 = on */ public static final String LOCKSCREEN_PIN_SCRAMBLE_LAYOUT = "lockscreen_scramble_pin_layout"; @@ -1474,7 +1419,8 @@ public final class CMSettings { sBooleanValidator; /** - * @hide + * Whether to show the alarm clock icon in the status bar. + * 0 = 0ff, 1 = on */ public static final String SHOW_ALARM_ICON = "show_alarm_icon"; @@ -1484,7 +1430,7 @@ public final class CMSettings { /** * Whether to show the IME switcher in the status bar - * @hide + * 0 = 0ff, 1 = on */ public static final String STATUS_BAR_IME_SWITCHER = "status_bar_ime_switcher"; @@ -1492,19 +1438,19 @@ public final class CMSettings { public static final Validator STATUS_BAR_IME_SWITCHER_VALIDATOR = sBooleanValidator; - /** Whether to allow one finger quick settings expansion on the right side of the statusbar. - * - * @hide + /** + * Whether to allow one finger quick settings expansion on the right side of the statusbar. + * 0 = 0ff, 1 = on */ - public static final String STATUS_BAR_QUICK_QS_PULLDOWN = "status_bar_quick_qs_pulldown"; + public static final String STATUS_BAR_QUICK_QS_PULLDOWN = "qs_quick_pulldown"; /** @hide */ public static final Validator STATUS_BAR_QUICK_QS_PULLDOWN_VALIDATOR = sBooleanValidator; - /** Whether to show the brightness slider in quick settings panel. - * - * @hide + /** + * Whether to show the brightness slider in quick settings panel. + * 0 = 0ff, 1 = on */ public static final String QS_SHOW_BRIGHTNESS_SLIDER = "qs_show_brightness_slider"; @@ -1514,8 +1460,7 @@ public final class CMSettings { /** * Whether to control brightness from status bar - * - * @hide + * 0 = 0ff, 1 = on */ public static final String STATUS_BAR_BRIGHTNESS_CONTROL = "status_bar_brightness_control"; @@ -1525,7 +1470,7 @@ public final class CMSettings { /** * Whether or not volume button music controls should be enabled to seek media tracks - * @hide + * 0 = 0ff, 1 = on */ public static final String VOLBTN_MUSIC_CONTROLS = "volbtn_music_controls"; @@ -1535,7 +1480,7 @@ public final class CMSettings { /** * Use EdgeGesture Service for system gestures in PhoneWindowManager - * @hide + * 0 = 0ff, 1 = on */ public static final String USE_EDGE_SERVICE_FOR_GESTURES = "edge_service_for_gestures"; @@ -1545,7 +1490,6 @@ public final class CMSettings { /** * Show the pending notification counts as overlays on the status bar - * @hide */ public static final String STATUS_BAR_NOTIF_COUNT = "status_bar_notif_count"; @@ -1558,7 +1502,6 @@ public final class CMSettings { * 0: AMR_WB * 1: MPEG_4 * Default: 0 - * @hide */ public static final String CALL_RECORDING_FORMAT = "call_recording_format"; @@ -1569,7 +1512,6 @@ public final class CMSettings { /** * Contains the notifications light maximum brightness to use. * Values range from 1 to 255 - * @hide */ public static final String NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL = "notification_light_brightness_level"; @@ -1580,7 +1522,7 @@ public final class CMSettings { /** * Whether to use the all the LEDs for the notifications or just one. - * @hide + * 0 = 0ff, 1 = on */ public static final String NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE = "notification_light_multiple_leds_enable"; @@ -1592,7 +1534,6 @@ public final class CMSettings { /** * Whether to allow notifications with the screen on or DayDreams. * The value is boolean (1 or 0). Default will always be false. - * @hide */ public static final String NOTIFICATION_LIGHT_SCREEN_ON = "notification_light_screen_on_enable"; @@ -1603,7 +1544,6 @@ public final class CMSettings { /** * What color to use for the notification LED by default - * @hide */ public static final String NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR = "notification_light_pulse_default_color"; @@ -1614,7 +1554,6 @@ public final class CMSettings { /** * How long to flash the notification LED by default - * @hide */ public static final String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON = "notification_light_pulse_default_led_on"; @@ -1625,7 +1564,6 @@ public final class CMSettings { /** * How long to wait between flashes for the notification LED by default - * @hide */ public static final String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF = "notification_light_pulse_default_led_off"; @@ -1636,7 +1574,6 @@ public final class CMSettings { /** * What color to use for the missed call notification LED - * @hide */ public static final String NOTIFICATION_LIGHT_PULSE_CALL_COLOR = "notification_light_pulse_call_color"; @@ -1647,7 +1584,6 @@ public final class CMSettings { /** * How long to flash the missed call notification LED - * @hide */ public static final String NOTIFICATION_LIGHT_PULSE_CALL_LED_ON = "notification_light_pulse_call_led_on"; @@ -1658,7 +1594,6 @@ public final class CMSettings { /** * How long to wait between flashes for the missed call notification LED - * @hide */ public static final String NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF = "notification_light_pulse_call_led_off"; @@ -1669,7 +1604,6 @@ public final class CMSettings { /** * What color to use for the voicemail notification LED - * @hide */ public static final String NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR = "notification_light_pulse_vmail_color"; @@ -1680,7 +1614,6 @@ public final class CMSettings { /** * How long to flash the voicemail notification LED - * @hide */ public static final String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON = "notification_light_pulse_vmail_led_on"; @@ -1691,7 +1624,6 @@ public final class CMSettings { /** * How long to wait between flashes for the voicemail notification LED - * @hide */ public static final String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF = "notification_light_pulse_vmail_led_off"; @@ -1702,7 +1634,7 @@ public final class CMSettings { /** * Whether to use the custom LED values for the notification pulse LED. - * @hide + * 0 = 0ff, 1 = on */ public static final String NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE = "notification_light_pulse_custom_enable"; @@ -1713,7 +1645,6 @@ public final class CMSettings { /** * Which custom LED values to use for the notification pulse LED. - * @hide */ public static final String NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES = "notification_light_pulse_custom_values"; @@ -1801,7 +1732,6 @@ public final class CMSettings { * @hide */ public static final String[] LEGACY_SYSTEM_SETTINGS = new String[]{ - CMSettings.System.QS_QUICK_PULLDOWN, CMSettings.System.NAV_BUTTONS, CMSettings.System.KEY_HOME_LONG_PRESS_ACTION, CMSettings.System.KEY_HOME_DOUBLE_TAP_ACTION, @@ -1914,7 +1844,6 @@ public final class CMSettings { public static final Map VALIDATORS = new ArrayMap(); static { - VALIDATORS.put(QS_QUICK_PULLDOWN, QS_QUICK_PULLDOWN_VALIDATOR); VALIDATORS.put(NOTIFICATION_PLAY_QUEUE, NOTIFICATION_PLAY_QUEUE_VALIDATOR); VALIDATORS.put(HIGH_TOUCH_SENSITIVITY_ENABLE, HIGH_TOUCH_SENSITIVITY_ENABLE_VALIDATOR);