| Index: chrome/browser/ui/webui/signin/user_manager_screen_handler.cc
|
| diff --git a/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc b/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc
|
| index ee49bfb28d866b43d7acf2a02d6085cbbe04f378..589e8fee21bf012440782108944a8d11294068c0 100644
|
| --- a/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc
|
| +++ b/chrome/browser/ui/webui/signin/user_manager_screen_handler.cc
|
| @@ -49,7 +49,7 @@ const char kKeyDisplayName[]= "displayName";
|
| const char kKeyEmailAddress[] = "emailAddress";
|
| const char kKeyProfilePath[] = "profilePath";
|
| const char kKeyPublicAccount[] = "publicAccount";
|
| -const char kKeyLocallyManagedUser[] = "locallyManagedUser";
|
| +const char kKeySupervisedUser[] = "supervisedUser";
|
| const char kKeySignedIn[] = "signedIn";
|
| const char kKeyCanRemove[] = "canRemove";
|
| const char kKeyIsOwner[] = "isOwner";
|
| @@ -612,7 +612,7 @@ void UserManagerScreenHandler::SendUserList() {
|
| profile_value->SetString(kKeyProfilePath, profile_path.MaybeAsASCII());
|
| profile_value->SetBoolean(kKeyPublicAccount, false);
|
| profile_value->SetBoolean(
|
| - kKeyLocallyManagedUser, info_cache.ProfileIsSupervisedAtIndex(i));
|
| + kKeySupervisedUser, info_cache.ProfileIsSupervisedAtIndex(i));
|
| profile_value->SetBoolean(kKeySignedIn, is_active_user);
|
| profile_value->SetBoolean(
|
| kKeyNeedsSignin, info_cache.ProfileIsSigninRequiredAtIndex(i));
|
|
|