@@ -4904,6 +4904,69 @@ public static void setShowGTalkServiceStatusForUser(ContentResolver cr, boolean
4904
4904
*/
4905
4905
public static final String LOCKSCREEN_BATTERY_INFO = "lockscreen_battery_info";
4906
4906
4907
+ /**
4908
+ * Color temperature of the display during the day
4909
+ */
4910
+ public static final String DISPLAY_TEMPERATURE_DAY = "display_temperature_day";
4911
+
4912
+ /**
4913
+ * Color temperature of the display at night
4914
+ */
4915
+ public static final String DISPLAY_TEMPERATURE_NIGHT = "display_temperature_night";
4916
+
4917
+ /**
4918
+ * Display color temperature adjustment mode, one of DAY (default), NIGHT, or AUTO.
4919
+ */
4920
+ public static final String DISPLAY_TEMPERATURE_MODE = "display_temperature_mode";
4921
+
4922
+ /**
4923
+ * Automatic outdoor mode
4924
+ * 0 = 0ff, 1 = on
4925
+ */
4926
+ public static final String DISPLAY_AUTO_OUTDOOR_MODE = "display_auto_outdoor_mode";
4927
+
4928
+ /**
4929
+ * Reader mode
4930
+ * 0 = 0ff, 1 = on
4931
+ */
4932
+ public static final String DISPLAY_READING_MODE = "display_reading_mode";
4933
+
4934
+ /**
4935
+ * Use display power saving features such as CABC or CABL
4936
+ * 0 = 0ff, 1 = on
4937
+ */
4938
+ public static final String DISPLAY_CABC = "display_low_power";
4939
+
4940
+ /**
4941
+ * Use color enhancement feature of display
4942
+ * 0 = 0ff, 1 = on
4943
+ */
4944
+ public static final String DISPLAY_COLOR_ENHANCE = "display_color_enhance";
4945
+
4946
+ /**
4947
+ * Use auto contrast optimization feature of display
4948
+ * 0 = 0ff, 1 = on
4949
+ */
4950
+ public static final String DISPLAY_AUTO_CONTRAST = "display_auto_contrast";
4951
+
4952
+ /**
4953
+ * Manual display color adjustments (RGB values as floats, separated by spaces)
4954
+ */
4955
+ public static final String DISPLAY_COLOR_ADJUSTMENT = "display_color_adjustment";
4956
+
4957
+ /**
4958
+ * The current custom picture adjustment values as a delimited string
4959
+ */
4960
+ public static final String DISPLAY_PICTURE_ADJUSTMENT =
4961
+ "display_picture_adjustment";
4962
+
4963
+ /**
4964
+ * Did we tell about how they can stop breaking their eyes?
4965
+ * @hide
4966
+ */
4967
+ public static final String LIVE_DISPLAY_HINTED = "live_display_hinted";
4968
+
4969
+
4907
4970
/**
4908
4971
* Keys we no longer back up under the current schema, but want to continue to
4909
4972
* process when restoring historical backup datasets.
@@ -5037,6 +5100,17 @@ public static void setShowGTalkServiceStatusForUser(ContentResolver cr, boolean
5037
5100
PRIVATE_SETTINGS.add(KEY_APP_SWITCH_LONG_PRESS_ACTION);
5038
5101
PRIVATE_SETTINGS.add(LOCKSCREEN_MEDIA_ART);
5039
5102
PRIVATE_SETTINGS.add(POCKET_JUDGE);
5103
+ PRIVATE_SETTINGS.add(DISPLAY_TEMPERATURE_DAY);
5104
+ PRIVATE_SETTINGS.add(DISPLAY_TEMPERATURE_NIGHT);
5105
+ PRIVATE_SETTINGS.add(DISPLAY_TEMPERATURE_MODE);
5106
+ PRIVATE_SETTINGS.add(DISPLAY_AUTO_OUTDOOR_MODE);
5107
+ PRIVATE_SETTINGS.add(DISPLAY_READING_MODE);
5108
+ PRIVATE_SETTINGS.add(DISPLAY_CABC);
5109
+ PRIVATE_SETTINGS.add(DISPLAY_COLOR_ENHANCE);
5110
+ PRIVATE_SETTINGS.add(DISPLAY_AUTO_CONTRAST);
5111
+ PRIVATE_SETTINGS.add(DISPLAY_COLOR_ADJUSTMENT);
5112
+ PRIVATE_SETTINGS.add(DISPLAY_PICTURE_ADJUSTMENT);
5113
+ PRIVATE_SETTINGS.add(LIVE_DISPLAY_HINTED);
5040
5114
}
5041
5115
5042
5116
/**
0 commit comments