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

Commit 60113556 authored by Amith Yamasani's avatar Amith Yamasani Committed by Android Git Automerger
Browse files

am 6064c5cf: am e1375908: Rename isUserLimited to isLinkedUser

* commit '6064c5cf':
  Rename isUserLimited to isLinkedUser
parents dc97936e 6064c5cf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17084,8 +17084,8 @@ package android.os {
    method public java.lang.String getUserName();
    method public android.os.Bundle getUserRestrictions();
    method public android.os.Bundle getUserRestrictions(android.os.UserHandle);
    method public boolean isLinkedUser();
    method public boolean isUserAGoat();
    method public boolean isUserLimited();
    method public boolean isUserRunning(android.os.UserHandle);
    method public boolean isUserRunningOrStopping(android.os.UserHandle);
    method public void setUserRestriction(java.lang.String, boolean);
+3 −3
Original line number Diff line number Diff line
@@ -198,11 +198,11 @@ public class UserManager {
    }

    /**
     * Used to check if the user making this call is a limited user. Limited users may have
     * Used to check if the user making this call is linked to another user. Linked users may have
     * a reduced number of available apps, app restrictions and account restrictions.
     * @return whether the user making this call is a limited user
     * @return whether the user making this call is a linked user
     */
    public boolean isUserLimited() {
    public boolean isLinkedUser() {
        try {
            return mService.isRestricted();
        } catch (RemoteException re) {