| Index: ui/app_list/views/tile_item_view.cc
|
| diff --git a/ui/app_list/views/tile_item_view.cc b/ui/app_list/views/tile_item_view.cc
|
| index c73f9e02ce782de4e5a2f64e9848bb7fbd15f97a..8705df4eed447367ee586df80c7cfaa9f8472a6b 100644
|
| --- a/ui/app_list/views/tile_item_view.cc
|
| +++ b/ui/app_list/views/tile_item_view.cc
|
| @@ -25,7 +25,6 @@ const int kTileHorizontalPadding = 10;
|
| const int kTileImageSize = 48;
|
|
|
| const SkColor kTileBackgroundColor = SK_ColorWHITE;
|
| -const SkColor kTileBorderColor = SkColorSetARGB(0x30, 0xD0, 0xD0, 0xD0);
|
| const int kTileColorStripHeight = 2;
|
| const SkAlpha kTileColorStripOpacity = 0X5F;
|
| const int kTileCornerRadius = 2;
|
| @@ -49,7 +48,7 @@ class TileItemView::TileItemBackground : public views::Background {
|
| paint.setFlags(SkPaint::kAntiAlias_Flag);
|
|
|
| // Paint the border.
|
| - paint.setColor(kTileBorderColor);
|
| + paint.setColor(kStartPageBorderColor);
|
| canvas->DrawRoundRect(view->GetContentsBounds(), kTileCornerRadius, paint);
|
|
|
| // Paint a rectangle for the color strip.
|
|
|