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