Skip to content

Commit

Permalink
Use color favicon for AI Chat
Browse files Browse the repository at this point in the history
  • Loading branch information
petemill committed Dec 16, 2024
1 parent 203dd46 commit d4990cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion chromium_src/chrome/browser/favicon/favicon_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ bool ShouldThemifyFaviconForEntry(content::NavigationEntry* entry) {
// Don't theme for certain brave favicons which are full color
if (virtual_url.SchemeIs(content::kChromeUIScheme) &&
(virtual_url.host_piece() == kRewardsPageHost ||
virtual_url.host_piece() == kWalletPageHost)) {
virtual_url.host_piece() == kWalletPageHost ||
virtual_url.host_piece() == kAIChatUIHost)) {
return false;
}
return ShouldThemifyFaviconForEntry_ChromiumImpl(entry);
Expand Down

0 comments on commit d4990cf

Please sign in to comment.