Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6a88e066 authored by Nate Jiang's avatar Nate Jiang Committed by Automerger Merge Worker
Browse files

Merge "Keep most recently connection network flag" into rvc-dev am: 0ccefbe9...

Merge "Keep most recently connection network flag" into rvc-dev am: 0ccefbe9 am: 22db1b3c am: 7adcf701

Change-Id: Ib8e6d0a044db9a50383c2475404bdc50703a4b25
parents 04e5d535 7adcf701
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -2356,6 +2356,8 @@ public class WifiConfiguration implements Parcelable {
        sbuf.append(" lcuid=" + lastConnectUid);
        sbuf.append(" allowAutojoin=" + allowAutojoin);
        sbuf.append(" noInternetAccessExpected=" + noInternetAccessExpected);
        sbuf.append(" mostRecentlyConnected=" + isMostRecentlyConnected);

        sbuf.append(" ");

        if (this.lastConnected != 0) {
@@ -2964,4 +2966,11 @@ public class WifiConfiguration implements Parcelable {
        return mPasspointUniqueId;
    }

    /**
     * If network is one of the most recently connected.
     * For framework internal use only. Do not parcel.
     * @hide
     */
    public boolean isMostRecentlyConnected = false;

}