| Index: chrome/browser/ui/views/tabs/tab_strip.cc
|
| diff --git a/chrome/browser/ui/views/tabs/tab_strip.cc b/chrome/browser/ui/views/tabs/tab_strip.cc
|
| index e0d1a407fbe389e496a9bed39304a7793e06f44d..9eb4dec7f61a663052b707c8aef49782ad8cea88 100644
|
| --- a/chrome/browser/ui/views/tabs/tab_strip.cc
|
| +++ b/chrome/browser/ui/views/tabs/tab_strip.cc
|
| @@ -230,7 +230,7 @@ SkBitmap NewTabButton::GetBackgroundBitmap(
|
| SkBitmap* mask = GetThemeProvider()->GetBitmapNamed(IDR_NEWTAB_BUTTON_MASK);
|
| int height = mask->height();
|
| int width = mask->width();
|
| - gfx::CanvasSkia canvas(gfx::Size(width, height), false);
|
| + gfx::Canvas canvas(gfx::Size(width, height), false);
|
|
|
| // For custom images the background starts at the top of the tab strip.
|
| // Otherwise the background starts at the top of the frame.
|
| @@ -261,7 +261,7 @@ SkBitmap NewTabButton::GetBitmapForState(
|
| IDR_NEWTAB_BUTTON_P : IDR_NEWTAB_BUTTON;
|
| SkBitmap* overlay = GetThemeProvider()->GetBitmapNamed(overlay_id);
|
|
|
| - gfx::CanvasSkia canvas(gfx::Size(overlay->width(), overlay->height()), false);
|
| + gfx::Canvas canvas(gfx::Size(overlay->width(), overlay->height()), false);
|
| canvas.DrawBitmapInt(GetBackgroundBitmap(state), 0, 0);
|
|
|
| // Draw the button border with a slight alpha.
|
|
|