Index: views/controls/table/table_view.cc |
=================================================================== |
--- views/controls/table/table_view.cc (revision 50452) |
+++ views/controls/table/table_view.cc (working copy) |
@@ -834,7 +834,7 @@ |
// We create 2 phony images because we are going to switch images at every |
// refresh in order to force a refresh of the icon area (somehow the clip |
// rect does not include the icon). |
- gfx::Canvas canvas(kImageSize, kImageSize, false); |
+ gfx::CanvasSkia canvas(kImageSize, kImageSize, false); |
// Make the background completely transparent. |
canvas.drawColor(SK_ColorBLACK, SkXfermode::kClear_Mode); |
HICON empty_icon = |
@@ -1153,7 +1153,7 @@ |
HDC dc = GetDC(GetNativeControlHWND()); |
gfx::Font font = GetAltTextFont(); |
gfx::Rect bounds = GetAltTextBounds(); |
- gfx::Canvas canvas(bounds.width(), bounds.height(), false); |
+ gfx::CanvasSkia canvas(bounds.width(), bounds.height(), false); |
// Pad by 1 for halo. |
canvas.DrawStringWithHalo(alt_text_, font, SK_ColorDKGRAY, SK_ColorWHITE, 1, |
1, bounds.width() - 2, bounds.height() - 2, |
@@ -1236,8 +1236,8 @@ |
client_rect.top += content_offset_; |
// Make sure the region need to paint is visible. |
if (IntersectRect(&intersection, &icon_rect, &client_rect)) { |
- gfx::Canvas canvas(icon_rect.right - icon_rect.left, |
- icon_rect.bottom - icon_rect.top, false); |
+ gfx::CanvasSkia canvas(icon_rect.right - icon_rect.left, |
+ icon_rect.bottom - icon_rect.top, false); |
// It seems the state in nmcd.uItemState is not correct. |
// We'll retrieve it explicitly. |