Index: third_party/WebKit/Source/core/paint/BoxBorderPainter.cpp |
diff --git a/third_party/WebKit/Source/core/paint/BoxBorderPainter.cpp b/third_party/WebKit/Source/core/paint/BoxBorderPainter.cpp |
index 27d7632d91f350175e1ab37e4f7fc03870bd88ec..d3a16e67edaafb55bf2a8f71821d943771008667 100644 |
--- a/third_party/WebKit/Source/core/paint/BoxBorderPainter.cpp |
+++ b/third_party/WebKit/Source/core/paint/BoxBorderPainter.cpp |
@@ -309,9 +309,9 @@ void drawBleedAdjustedDRRect(GraphicsContext& context, |
path.addRRect(inner); |
path.setFillType(SkPath::kInverseWinding_FillType); |
- SkPaint paint; |
+ PaintFlags paint; |
paint.setColor(color.rgb()); |
- paint.setStyle(SkPaint::kFill_Style); |
+ paint.setStyle(PaintFlags::kFill_Style); |
paint.setAntiAlias(true); |
context.drawPath(path, paint); |