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

Unified Diff: ui/app_list/views/tile_item_view.cc

Issue 335343002: Add a DummySearchBoxView to the experimental app list start page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 6 years, 6 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
« no previous file with comments | « ui/app_list/views/start_page_view.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 f587a0ca41194ab9f09c90675868776cf3431e0a..dcc30c383749d85b751b3aab453b1e6b37860ec7 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.
« no previous file with comments | « ui/app_list/views/start_page_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698