am e1375908: Rename isUserLimited to isLinkedUser
* commit 'e1375908a5f05e5c926e95049970c4505e4dfad9': Rename isUserLimited to isLinkedUser
This commit is contained in:
@@ -17081,8 +17081,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);
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user