| Index: chrome/browser/ui/views/tab_icon_view.cc
|
| diff --git a/chrome/browser/ui/views/tab_icon_view.cc b/chrome/browser/ui/views/tab_icon_view.cc
|
| index 1330cd03fb6674f96753efb75bf7a5bcf8f0cd2f..0a2f97453e6e48f50017ffccc7e06ddf79e5a222 100644
|
| --- a/chrome/browser/ui/views/tab_icon_view.cc
|
| +++ b/chrome/browser/ui/views/tab_icon_view.cc
|
| @@ -99,7 +99,8 @@ void TabIconView::PaintThrobber(gfx::Canvas* canvas) {
|
| image_size, false);
|
| }
|
|
|
| -void TabIconView::PaintFavicon(gfx::Canvas* canvas, const SkBitmap& image) {
|
| +void TabIconView::PaintFavicon(gfx::Canvas* canvas,
|
| + const gfx::ImageSkia& image) {
|
| PaintIcon(canvas, image, 0, 0, image.width(), image.height(), true);
|
| }
|
|
|
| @@ -142,7 +143,7 @@ void TabIconView::OnPaint(gfx::Canvas* canvas) {
|
| rendered = true;
|
| PaintThrobber(canvas);
|
| } else {
|
| - SkBitmap favicon = model_->GetFaviconForTabIconView();
|
| + gfx::ImageSkia favicon = model_->GetFaviconForTabIconView();
|
| if (!favicon.isNull()) {
|
| rendered = true;
|
| PaintFavicon(canvas, favicon);
|
|
|