Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Unified Diff: third_party/WebKit/Source/core/paint/BoxBorderPainter.cpp

Issue 2640983002: Rename paint data structures (Closed)
Patch Set: DrawingDisplayItem Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
« no previous file with comments | « third_party/WebKit/Source/core/page/PrintContextTest.cpp ('k') | third_party/WebKit/Source/core/paint/BoxReflectionUtils.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698