Commit e33fc451 authored by shrike's avatar shrike Committed by Commit bot

Restore default browser infobar icon to full-color Chrome icon.

Earlier this year the default browser infobar icon was changed to a
stylized blue Chrome icon. This cl, per rpop@, reverts the icon to its
original full-color version.

R=sky@chromium.org
BUG=654340

Review-Url: https://codereview.chromium.org/2537453004
Cr-Commit-Position: refs/heads/master@{#434839}
parent e3b779c3
......@@ -97,8 +97,8 @@ DefaultBrowserInfoBarDelegate::GetIdentifier() const {
return DEFAULT_BROWSER_INFOBAR_DELEGATE;
}
gfx::VectorIconId DefaultBrowserInfoBarDelegate::GetVectorIconId() const {
return gfx::VectorIconId::CHROME_PRODUCT;
int DefaultBrowserInfoBarDelegate::GetIconId() const {
return IDR_PRODUCT_LOGO_32;
}
#if defined(OS_WIN)
......
......@@ -56,7 +56,7 @@ class DefaultBrowserInfoBarDelegate : public ConfirmInfoBarDelegate {
// ConfirmInfoBarDelegate:
Type GetInfoBarType() const override;
infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override;
gfx::VectorIconId GetVectorIconId() const override;
int GetIconId() const override;
#if defined(OS_WIN)
gfx::Image GetIcon() const override;
#endif // defined(OS_WIN)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment