Merge "Fixed incorrect merge service state" into qt-r1-dev

This commit is contained in:
TreeHugger Robot
2019-06-14 03:22:55 +00:00
committed by Android (Google) Code Review

View File

@@ -2035,4 +2035,18 @@ public class ServiceState implements Parcelable {
public void setIwlanPreferred(boolean isIwlanPreferred) {
mIsIwlanPreferred = isIwlanPreferred;
}
/**
* @return {@code true} if any data network is preferred on IWLAN.
*
* Note only when this value is true, {@link #getDataNetworkType()} will return
* {@link TelephonyManager#NETWORK_TYPE_IWLAN} when AP-assisted mode device camps on both
* cellular and IWLAN. This value does not affect legacy mode devices as the data network
* type is directly reported by the modem.
*
* @hide
*/
public boolean isIwlanPreferred() {
return mIsIwlanPreferred;
}
}