| Index: chrome/browser/ui/views/tabs/base_tab.cc
|
| diff --git a/chrome/browser/ui/views/tabs/base_tab.cc b/chrome/browser/ui/views/tabs/base_tab.cc
|
| index 4b0389f454736da6a79941a51ffbe4b64767e106..fd3b7d3a1a6fbdae30e3ff26dcbf4e727059a3de 100644
|
| --- a/chrome/browser/ui/views/tabs/base_tab.cc
|
| +++ b/chrome/browser/ui/views/tabs/base_tab.cc
|
| @@ -418,9 +418,9 @@ void BaseTab::PaintIcon(gfx::Canvas* canvas) {
|
| if (bounds.IsEmpty())
|
| return;
|
|
|
| - // The size of bounds has to be kFavIconSize x kFavIconSize.
|
| - DCHECK_EQ(kFavIconSize, bounds.width());
|
| - DCHECK_EQ(kFavIconSize, bounds.height());
|
| + // The size of bounds has to be kFaviconSize x kFaviconSize.
|
| + DCHECK_EQ(kFaviconSize, bounds.width());
|
| + DCHECK_EQ(kFaviconSize, bounds.height());
|
|
|
| bounds.set_x(GetMirroredXForRect(bounds));
|
|
|
|
|