| Index: chrome/browser/ui/views/frame/browser_non_client_frame_view.cc
|
| diff --git a/chrome/browser/ui/views/frame/browser_non_client_frame_view.cc b/chrome/browser/ui/views/frame/browser_non_client_frame_view.cc
|
| index 4353e75047e7ad558a0133d234277ceea76fffcd..3da8b1110df078c3cc4b9d5e186dfcbd813f757a 100644
|
| --- a/chrome/browser/ui/views/frame/browser_non_client_frame_view.cc
|
| +++ b/chrome/browser/ui/views/frame/browser_non_client_frame_view.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h"
|
|
|
| #include "build/build_config.h"
|
| +#include "chrome/app/vector_icons/vector_icons.h"
|
| #include "chrome/browser/browser_process.h"
|
| #include "chrome/browser/profiles/avatar_menu.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| @@ -20,7 +21,6 @@
|
| #include "ui/gfx/color_palette.h"
|
| #include "ui/gfx/image/image.h"
|
| #include "ui/gfx/paint_vector_icon.h"
|
| -#include "ui/gfx/vector_icons_public.h"
|
| #include "ui/views/background.h"
|
|
|
| #if defined(OS_WIN)
|
| @@ -52,7 +52,7 @@ void BrowserNonClientFrameView::OnBrowserViewInitViewsComplete() {}
|
| gfx::ImageSkia BrowserNonClientFrameView::GetIncognitoAvatarIcon() const {
|
| const SkColor icon_color = color_utils::PickContrastingColor(
|
| SK_ColorWHITE, gfx::kChromeIconGrey, GetFrameColor());
|
| - return gfx::CreateVectorIcon(gfx::VectorIconId::INCOGNITO, icon_color);
|
| + return gfx::CreateVectorIcon(kIncognitoIcon, icon_color);
|
| }
|
|
|
| SkColor BrowserNonClientFrameView::GetToolbarTopSeparatorColor() const {
|
|
|