Index: views/controls/table/native_table_win.cc |
=================================================================== |
--- views/controls/table/native_table_win.cc (revision 86706) |
+++ views/controls/table/native_table_win.cc (working copy) |
@@ -548,10 +548,9 @@ |
(intersection.right - intersection.left); |
to_draw.bottom = to_draw.top + |
(intersection.bottom - intersection.top); |
- canvas.getTopPlatformDevice().drawToHDC(draw_info->nmcd.hdc, |
- intersection.left, |
- intersection.top, |
- &to_draw); |
+ skia::DrawToNativeContext(&canvas, draw_info->nmcd.hdc, |
+ intersection.left, intersection.top, |
+ &to_draw); |
r = CDRF_SKIPDEFAULT; |
} |
} |