| Index: chrome/browser/ui/views/frame/browser_non_client_frame_view.cc
|
| diff --git a/chrome/browser/ui/views/frame/browser_non_client_frame_view.cc b/chrome/browser/ui/views/frame/browser_non_client_frame_view.cc
|
| index 0f0bda8e2b4be5e45e8dbfc5ea27df2eeb12db65..ba42d91f72f012c7102190799b6d4e82fa791f75 100644
|
| --- a/chrome/browser/ui/views/frame/browser_non_client_frame_view.cc
|
| +++ b/chrome/browser/ui/views/frame/browser_non_client_frame_view.cc
|
| @@ -215,6 +215,26 @@
|
| avatar_button_ = nullptr;
|
| frame_->GetRootView()->Layout();
|
| }
|
| +
|
| + gfx::Image avatar;
|
| + gfx::Image taskbar_badge_avatar;
|
| + bool is_rectangle = false;
|
| +
|
| + // Update the avatar button in the window frame and the taskbar overlay.
|
| + bool should_show_avatar_menu =
|
| + avatar_button_ || AvatarMenu::ShouldShowAvatarMenu();
|
| +
|
| + if (!AvatarMenuButton::GetAvatarImages(
|
| + browser_view_->browser()->profile(), should_show_avatar_menu, &avatar,
|
| + &taskbar_badge_avatar, &is_rectangle)) {
|
| + return;
|
| + }
|
| +
|
| + // Disable the menu when we should not show the menu.
|
| + if (avatar_button_ && !AvatarMenu::ShouldShowAvatarMenu())
|
| + avatar_button_->SetEnabled(false);
|
| + if (avatar_button_)
|
| + avatar_button_->SetAvatarIcon(avatar, is_rectangle);
|
| }
|
|
|
| void BrowserNonClientFrameView::UpdateNewAvatarButton(
|
|
|