| Index: chrome/browser/ui/views/frame/browser_non_client_frame_view_mus.cc
|
| diff --git a/chrome/browser/ui/views/frame/browser_non_client_frame_view_mus.cc b/chrome/browser/ui/views/frame/browser_non_client_frame_view_mus.cc
|
| index 966a362e1957b3a81722b4deb93b522e8d37958a..6456de8ca8bc94967bc21d2aa7a6d0ccb8f263fd 100644
|
| --- a/chrome/browser/ui/views/frame/browser_non_client_frame_view_mus.cc
|
| +++ b/chrome/browser/ui/views/frame/browser_non_client_frame_view_mus.cc
|
| @@ -406,8 +406,8 @@ bool BrowserNonClientFrameViewMus::DoesIntersectRect(
|
| int BrowserNonClientFrameViewMus::GetTabStripLeftInset() const {
|
| const gfx::Insets insets(GetLayoutInsets(AVATAR_ICON));
|
| const int avatar_right = profile_indicator_icon()
|
| - ? (insets.left() + GetOTRAvatarIcon().width())
|
| - : 0;
|
| + ? (insets.left() + GetIncognitoAvatarIcon().width())
|
| + : 0;
|
| return avatar_right + insets.right() + frame_values().normal_insets.left();
|
| }
|
|
|
| @@ -456,7 +456,7 @@ void BrowserNonClientFrameViewMus::LayoutIncognitoButton() {
|
| // ChromeOS shows avatar on V1 app.
|
| DCHECK(browser_view()->IsTabStripVisible());
|
| #endif
|
| - gfx::ImageSkia incognito_icon = GetOTRAvatarIcon();
|
| + gfx::ImageSkia incognito_icon = GetIncognitoAvatarIcon();
|
| gfx::Insets avatar_insets = GetLayoutInsets(AVATAR_ICON);
|
| int avatar_bottom = GetTopInset(false) + browser_view()->GetTabStripHeight() -
|
| avatar_insets.bottom();
|
|
|