@@ -2616,6 +2616,12 @@ public static final class Secure extends NameValueTable {
26162616 MOVED_TO_GLOBAL .add (Settings .Global .WIFI_WATCHDOG_POOR_NETWORK_TEST_ENABLED );
26172617 MOVED_TO_GLOBAL .add (Settings .Global .WIFI_WATCHDOG_RSSI_FETCH_INTERVAL_MS );
26182618 MOVED_TO_GLOBAL .add (Settings .Global .WIMAX_NETWORKS_AVAILABLE_NOTIFICATION_ON );
2619+ MOVED_TO_GLOBAL .add (Settings .Global .PACKAGE_VERIFIER_ENABLE );
2620+ MOVED_TO_GLOBAL .add (Settings .Global .PACKAGE_VERIFIER_TIMEOUT );
2621+ MOVED_TO_GLOBAL .add (Settings .Global .PACKAGE_VERIFIER_DEFAULT_RESPONSE );
2622+ MOVED_TO_GLOBAL .add (Settings .Global .DATA_STALL_ALARM_NON_AGGRESSIVE_DELAY_IN_MS );
2623+ MOVED_TO_GLOBAL .add (Settings .Global .DATA_STALL_ALARM_AGGRESSIVE_DELAY_IN_MS );
2624+ MOVED_TO_GLOBAL .add (Settings .Global .GPRS_REGISTER_CHECK_PERIOD_MS );
26192625 MOVED_TO_GLOBAL .add (Settings .Global .WTF_IS_FATAL );
26202626 }
26212627
@@ -4254,30 +4260,28 @@ public static final String getBluetoothInputDevicePriorityKey(String address) {
42544260 Global .PDP_WATCHDOG_MAX_PDP_RESET_FAIL_COUNT ;
42554261
42564262 /**
4257- * The number of milliseconds to delay when checking for data stalls during
4258- * non-aggressive detection. (screen is turned off.)
4263+ * @deprecated Moved to Settings.Global
42594264 * @hide
42604265 */
4266+ @ Deprecated
42614267 public static final String DATA_STALL_ALARM_NON_AGGRESSIVE_DELAY_IN_MS =
4262- "data_stall_alarm_non_aggressive_delay_in_ms" ;
4268+ Global . DATA_STALL_ALARM_NON_AGGRESSIVE_DELAY_IN_MS ;
42634269
42644270 /**
4265- * The number of milliseconds to delay when checking for data stalls during
4266- * aggressive detection. (screen on or suspected data stall)
4271+ * @deprecated Moved to Settings.Global
42674272 * @hide
42684273 */
4274+ @ Deprecated
42694275 public static final String DATA_STALL_ALARM_AGGRESSIVE_DELAY_IN_MS =
4270- "data_stall_alarm_aggressive_delay_in_ms" ;
4276+ Global . DATA_STALL_ALARM_AGGRESSIVE_DELAY_IN_MS ;
42714277
42724278 /**
4273- * The interval in milliseconds at which to check gprs registration
4274- * after the first registration mismatch of gprs and voice service,
4275- * to detect possible data network registration problems.
4276- *
4279+ * @deprecated Moved to Settings.Global
42774280 * @hide
42784281 */
4282+ @ Deprecated
42794283 public static final String GPRS_REGISTER_CHECK_PERIOD_MS =
4280- "gprs_register_check_period_ms" ;
4284+ Global . GPRS_REGISTER_CHECK_PERIOD_MS ;
42814285
42824286 /**
42834287 * @deprecated Use {@link android.provider.Settings.Global#NITZ_UPDATE_SPACING} instead
@@ -5603,6 +5607,32 @@ public static final class Global extends NameValueTable {
56035607 */
56045608 public static final String WIFI_P2P_DEVICE_NAME = "wifi_p2p_device_name" ;
56055609
5610+ /**
5611+ * The number of milliseconds to delay when checking for data stalls during
5612+ * non-aggressive detection. (screen is turned off.)
5613+ * @hide
5614+ */
5615+ public static final String DATA_STALL_ALARM_NON_AGGRESSIVE_DELAY_IN_MS =
5616+ "data_stall_alarm_non_aggressive_delay_in_ms" ;
5617+
5618+ /**
5619+ * The number of milliseconds to delay when checking for data stalls during
5620+ * aggressive detection. (screen on or suspected data stall)
5621+ * @hide
5622+ */
5623+ public static final String DATA_STALL_ALARM_AGGRESSIVE_DELAY_IN_MS =
5624+ "data_stall_alarm_aggressive_delay_in_ms" ;
5625+
5626+ /**
5627+ * The interval in milliseconds at which to check gprs registration
5628+ * after the first registration mismatch of gprs and voice service,
5629+ * to detect possible data network registration problems.
5630+ *
5631+ * @hide
5632+ */
5633+ public static final String GPRS_REGISTER_CHECK_PERIOD_MS =
5634+ "gprs_register_check_period_ms" ;
5635+
56065636 /**
56075637 * Nonzero causes Log.wtf() to crash.
56085638 * @hide
0 commit comments