Index: ui/gfx/blit_unittest.cc |
=================================================================== |
--- ui/gfx/blit_unittest.cc (revision 123041) |
+++ ui/gfx/blit_unittest.cc (working copy) |
@@ -61,7 +61,8 @@ |
TEST(Blit, ScrollCanvas) { |
static const int kCanvasWidth = 5; |
static const int kCanvasHeight = 5; |
- skia::PlatformCanvas canvas(kCanvasWidth, kCanvasHeight, true); |
+ skia::PlatformCanvas canvas(kCanvasWidth, kCanvasHeight, |
+ skia::PlatformDevice::FLAGS_OPAQUE); |
uint8 initial_values[kCanvasHeight][kCanvasWidth] = { |
{ 0x00, 0x01, 0x02, 0x03, 0x04 }, |
{ 0x10, 0x11, 0x12, 0x13, 0x14 }, |
@@ -160,4 +161,3 @@ |
} |
#endif |
- |