Index: ash/common/wm/overview/window_grid.cc |
diff --git a/ash/common/wm/overview/window_grid.cc b/ash/common/wm/overview/window_grid.cc |
index c7c01134252fc9980dfe62fb35b2fc9c67dc5051..6ff8d5994eacbe1efd8356fadf4a3fba45c4b529 100644 |
--- a/ash/common/wm/overview/window_grid.cc |
+++ b/ash/common/wm/overview/window_grid.cc |
@@ -182,8 +182,8 @@ void BackgroundWith1PxBorder::Paint(gfx::Canvas* canvas, |
path.addRoundRect(gfx::RectFToSkRect(border_rect_f), scaled_corner_radius, |
scaled_corner_radius); |
- SkPaint flags; |
- flags.setStyle(SkPaint::kStroke_Style); |
+ cc::PaintFlags flags; |
+ flags.setStyle(cc::PaintFlags::kStroke_Style); |
flags.setStrokeWidth(1); |
flags.setAntiAlias(true); |
@@ -192,7 +192,7 @@ void BackgroundWith1PxBorder::Paint(gfx::Canvas* canvas, |
SkPath fill_path; |
Op(path, stroke_path, kDifference_SkPathOp, &fill_path); |
- flags.setStyle(SkPaint::kFill_Style); |
+ flags.setStyle(cc::PaintFlags::kFill_Style); |
flags.setColor(get_color()); |
canvas->sk_canvas()->drawPath(fill_path, flags); |