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

Unified Diff: chrome/browser/ui/views/create_application_shortcut_view.cc

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: chrome/browser/ui/views/create_application_shortcut_view.cc
diff --git a/chrome/browser/ui/views/create_application_shortcut_view.cc b/chrome/browser/ui/views/create_application_shortcut_view.cc
index d483bd1cfffe5b587a359afcf883da84d61a0e3f..c43749d80f29390fbbbaaedccc7d512df77958bf 100644
--- a/chrome/browser/ui/views/create_application_shortcut_view.cc
+++ b/chrome/browser/ui/views/create_application_shortcut_view.cc
@@ -184,7 +184,7 @@ void AppInfoView::OnPaint(gfx::Canvas* canvas) {
SkIntToScalar(bounds.bottom())
};
- SkPaint border_paint;
+ cc::PaintFlags border_paint;
border_paint.setAntiAlias(true);
border_paint.setARGB(0xFF, 0xC8, 0xC8, 0xC8);
@@ -198,7 +198,7 @@ void AppInfoView::OnPaint(gfx::Canvas* canvas) {
border_rect.fBottom - SkDoubleToScalar(0.5),
};
- SkPaint inner_paint;
+ cc::PaintFlags inner_paint;
inner_paint.setAntiAlias(true);
inner_paint.setARGB(0xFF, 0xF8, 0xF8, 0xF8);
canvas->sk_canvas()->drawRoundRect(inner_rect, SkDoubleToScalar(1.5),
« no previous file with comments | « chrome/browser/ui/libgtkui/native_theme_gtk3.cc ('k') | chrome/browser/ui/views/download/download_item_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698