Merge "Merge "Wifi: revise WIFI off deferring constant name" into rvc-dev am: 580f82768c am: 7ec42d503d" into rvc-d1-dev-plus-aosp
This commit is contained in:
committed by
Android (Google) Code Review
commit
44cb5660b5
@@ -46858,7 +46858,7 @@ package android.telephony {
|
|||||||
|
|
||||||
public static final class CarrierConfigManager.Ims {
|
public static final class CarrierConfigManager.Ims {
|
||||||
field public static final String KEY_PREFIX = "ims.";
|
field public static final String KEY_PREFIX = "ims.";
|
||||||
field public static final String KEY_WIFI_OFF_DEFERRING_TIME_INT = "ims.wifi_off_deferring_time_int";
|
field public static final String KEY_WIFI_OFF_DEFERRING_TIME_MILLIS_INT = "ims.wifi_off_deferring_time_millis_int";
|
||||||
}
|
}
|
||||||
|
|
||||||
public abstract class CellIdentity implements android.os.Parcelable {
|
public abstract class CellIdentity implements android.os.Parcelable {
|
||||||
|
|||||||
@@ -3519,14 +3519,14 @@ public class CarrierConfigManager {
|
|||||||
/**
|
/**
|
||||||
* Delay in milliseconds to turn off wifi when IMS is registered over wifi.
|
* Delay in milliseconds to turn off wifi when IMS is registered over wifi.
|
||||||
*/
|
*/
|
||||||
public static final String KEY_WIFI_OFF_DEFERRING_TIME_INT =
|
public static final String KEY_WIFI_OFF_DEFERRING_TIME_MILLIS_INT =
|
||||||
KEY_PREFIX + "wifi_off_deferring_time_int";
|
KEY_PREFIX + "wifi_off_deferring_time_millis_int";
|
||||||
|
|
||||||
private Ims() {}
|
private Ims() {}
|
||||||
|
|
||||||
private static PersistableBundle getDefaults() {
|
private static PersistableBundle getDefaults() {
|
||||||
PersistableBundle defaults = new PersistableBundle();
|
PersistableBundle defaults = new PersistableBundle();
|
||||||
defaults.putInt(KEY_WIFI_OFF_DEFERRING_TIME_INT, 0);
|
defaults.putInt(KEY_WIFI_OFF_DEFERRING_TIME_MILLIS_INT, 0);
|
||||||
return defaults;
|
return defaults;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user