Index: chrome/browser/ui/views/frame/browser_view.cc |
=================================================================== |
--- chrome/browser/ui/views/frame/browser_view.cc (revision 88686) |
+++ chrome/browser/ui/views/frame/browser_view.cc (working copy) |
@@ -464,8 +464,10 @@ |
return browser_->profile()->IsOffTheRecord(); |
} |
-bool BrowserView::ShouldShowOffTheRecordAvatar() const { |
- return IsOffTheRecord() && IsBrowserTypeNormal(); |
+bool BrowserView::ShouldShowAvatar() const { |
+ return IsBrowserTypeNormal() && |
+ (IsOffTheRecord() || |
+ CommandLine::ForCurrentProcess()->HasSwitch(switches::kMultiProfiles)); |
} |
bool BrowserView::AcceleratorPressed(const views::Accelerator& accelerator) { |