| Index: chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm | 
| diff --git a/chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm b/chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm | 
| index 621a6e705f09b390bb4a6a95a83b5069f55adc39..5a61daf4e8fc3c8b06b5fb827cf89e3d843f1bba 100644 | 
| --- a/chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm | 
| +++ b/chrome/browser/ui/cocoa/profiles/profile_chooser_controller.mm | 
| @@ -50,6 +50,7 @@ | 
| #include "components/signin/core/browser/signin_manager.h" | 
| #include "components/signin/core/common/profile_management_switches.h" | 
| #include "content/public/browser/notification_service.h" | 
| +#include "content/public/browser/render_widget_host_view.h" | 
| #include "content/public/browser/web_contents.h" | 
| #include "google_apis/gaia/oauth2_token_service.h" | 
| #include "grit/theme_resources.h" | 
| @@ -1903,6 +1904,9 @@ class ActiveProfileObserverBridge : public AvatarMenuObserver, | 
| NSView* webview = webContents_->GetNativeView(); | 
| [webview setFrameSize:NSMakeSize(kFixedGaiaViewWidth, kFixedGaiaViewHeight)]; | 
| [container addSubview:webview]; | 
| +  content::RenderWidgetHostView* rwhv = webContents_->GetRenderWidgetHostView(); | 
| +  if (rwhv) | 
| +    rwhv->SetBackgroundColor(profiles::kAvatarBubbleGaiaBackgroundColor); | 
| yOffset = NSMaxY([webview frame]); | 
|  | 
| // Adds the title card. | 
|  |