Rename isUserLimited to isLinkedUser

A linked user is derived from another user and shares their accounts.

Change-Id: Ia2e63d573ccb635495ec54f31ac7b174725ad7a8
This commit is contained in:
Amith Yamasani
2013-04-13 16:48:35 -07:00
parent e188c984dd
commit e1375908a5
2 changed files with 4 additions and 4 deletions

View File

@@ -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);

View File

@@ -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) {