diff options
Diffstat (limited to 'components/infobars/core/infobar_delegate.cc')
-rw-r--r-- | components/infobars/core/infobar_delegate.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/infobars/core/infobar_delegate.cc b/components/infobars/core/infobar_delegate.cc index 6dc0b3d..4da01aa 100644 --- a/components/infobars/core/infobar_delegate.cc +++ b/components/infobars/core/infobar_delegate.cc @@ -46,10 +46,10 @@ gfx::Image InfoBarDelegate::GetIcon() const { if (ui::MaterialDesignController::IsModeMaterial()) { gfx::VectorIconId vector_id = GetVectorIconId(); if (vector_id != gfx::VectorIconId::VECTOR_ICON_NONE) { - return gfx::Image(gfx::CreateVectorIcon( - vector_id, 18, - GetInfoBarType() == WARNING_TYPE ? SkColorSetRGB(0xFF, 0x67, 0) - : gfx::kGoogleBlue)); + return gfx::Image(gfx::CreateVectorIcon(vector_id, 18, + GetInfoBarType() == WARNING_TYPE + ? SkColorSetRGB(0xFF, 0x67, 0) + : gfx::kGoogleBlue500)); } } #endif |