| Index: chrome/browser/ui/webui/ntp/ntp_login_handler.cc
|
| diff --git a/chrome/browser/ui/webui/ntp/ntp_login_handler.cc b/chrome/browser/ui/webui/ntp/ntp_login_handler.cc
|
| index 2f79470484e76309e6f298d92fae5b80385b292f..df4118a29e4232c1e97f134b29910758c15b7984 100644
|
| --- a/chrome/browser/ui/webui/ntp/ntp_login_handler.cc
|
| +++ b/chrome/browser/ui/webui/ntp/ntp_login_handler.cc
|
| @@ -212,7 +212,8 @@ void NTPLoginHandler::UpdateLogin() {
|
| const gfx::Image* image =
|
| cache.GetGAIAPictureOfProfileAtIndex(profile_index);
|
| if (image)
|
| - icon_url = web_ui_util::GetImageDataUrl(GetGAIAPictureForNTP(*image));
|
| + icon_url = web_ui_util::GetImageDataUrl(gfx::ImageSkia(
|
| + GetGAIAPictureForNTP(*image)));
|
| }
|
| if (header.empty())
|
| header = CreateSpanWithClass(UTF8ToUTF16(username), "profile-name");
|
|
|