| Index: chrome/browser/ui/views/profiles/avatar_menu_bubble_view.h
|
| diff --git a/chrome/browser/ui/views/profiles/avatar_menu_bubble_view.h b/chrome/browser/ui/views/profiles/avatar_menu_bubble_view.h
|
| index 3e8fd1e896bdf1c86e21f78555d68a8e4a4564a4..11fe86ae4f4a3851398426c0065d00940d054628 100644
|
| --- a/chrome/browser/ui/views/profiles/avatar_menu_bubble_view.h
|
| +++ b/chrome/browser/ui/views/profiles/avatar_menu_bubble_view.h
|
| @@ -101,8 +101,8 @@ class AvatarMenuBubbleView : public views::BubbleDelegateView,
|
| // Create the menu contents for a normal profile.
|
| void InitMenuContents(AvatarMenu* avatar_menu);
|
|
|
| - // Create the managed user specific contents of the menu.
|
| - void InitManagedUserContents(AvatarMenu* avatar_menu);
|
| + // Create the supervised user specific contents of the menu.
|
| + void InitSupervisedUserContents(AvatarMenu* avatar_menu);
|
|
|
| scoped_ptr<AvatarMenu> avatar_menu_;
|
| gfx::Rect anchor_rect_;
|
| @@ -118,9 +118,9 @@ class AvatarMenuBubbleView : public views::BubbleDelegateView,
|
| views::View* buttons_view_;
|
|
|
| // This will be non-NULL if and only if |expanded_| is false and
|
| - // avatar_menu_->GetManagedUserInformation() returns a non-empty string.
|
| + // avatar_menu_->GetSupervisedUserInformation() returns a non-empty string.
|
| // See OnAvatarMenuChanged().
|
| - views::Label* managed_user_info_;
|
| + views::Label* supervised_user_info_;
|
| views::ImageView* icon_view_;
|
| views::Separator* separator_switch_users_;
|
| views::Link* switch_profile_link_;
|
| @@ -128,7 +128,7 @@ class AvatarMenuBubbleView : public views::BubbleDelegateView,
|
| static AvatarMenuBubbleView* avatar_bubble_;
|
| static bool close_on_deactivate_for_testing_;
|
|
|
| - // Is set to true if the managed user has clicked on Switch Users.
|
| + // Is set to true if the supervised user has clicked on Switch Users.
|
| bool expanded_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AvatarMenuBubbleView);
|
|
|