| 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 4244531ea65f7589fc516e3401560e76928109b1..4a4df75a1c8cb510f96dbd6b3e4122d85bcb8b4a 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";
|
| @@ -606,7 +606,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));
|
|
|