Index: chrome/browser/profiles/profile_list_desktop.cc |
diff --git a/chrome/browser/profiles/profile_list_desktop.cc b/chrome/browser/profiles/profile_list_desktop.cc |
index 59ffb78c6c0b51a0adcf7cc9d2dc2b12f49a2a6d..cf69b3cf58ab634a717937dc5363978562a90056 100644 |
--- a/chrome/browser/profiles/profile_list_desktop.cc |
+++ b/chrome/browser/profiles/profile_list_desktop.cc |
@@ -51,12 +51,12 @@ void ProfileListDesktop::RebuildMenu() { |
item->name = profile_info_->GetNameOfProfileAtIndex(i); |
item->sync_state = profile_info_->GetUserNameOfProfileAtIndex(i); |
item->profile_path = profile_info_->GetPathOfProfileAtIndex(i); |
- item->managed = profile_info_->ProfileIsManagedAtIndex(i); |
+ item->supervised = profile_info_->ProfileIsSupervisedAtIndex(i); |
item->signed_in = !item->sync_state.empty(); |
if (!item->signed_in) { |
item->sync_state = l10n_util::GetStringUTF16( |
- item->managed ? IDS_MANAGED_USER_AVATAR_LABEL : |
- IDS_PROFILES_LOCAL_PROFILE_STATE); |
+ item->supervised ? IDS_MANAGED_USER_AVATAR_LABEL : |
+ IDS_PROFILES_LOCAL_PROFILE_STATE); |
} |
item->active = profile_info_->GetPathOfProfileAtIndex(i) == |
active_profile_path_; |