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

Unified Diff: ash/launcher/overflow_bubble.cc

Issue 10827202: ash: Update launcher background to 0.8 black. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « ash/launcher/launcher_types.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/launcher/overflow_bubble.cc
diff --git a/ash/launcher/overflow_bubble.cc b/ash/launcher/overflow_bubble.cc
index 55cf34585e78adc37a46cf46a9e6439b6a0d5af5..333fda82de81dddd1f99f2c120d41bd00c526e73 100644
--- a/ash/launcher/overflow_bubble.cc
+++ b/ash/launcher/overflow_bubble.cc
@@ -19,9 +19,6 @@ namespace internal {
namespace {
-// This should be the same color as the darkest launcher bar.
-const SkColor kLauncherColor = SkColorSetARGB(0x80, 0, 0, 0);
-
// Max bubble size to screen size ratio.
const float kMaxBubbleSizeToScreenRatio = 0.5f;
@@ -121,7 +118,7 @@ void OverflowBubbleView::InitOverflowBubble(LauncherDelegate* delegate,
set_anchor_view(anchor);
set_arrow_location(GetBubbleArrowLocation(shelf_alignment));
set_background(NULL);
- set_color(kLauncherColor);
+ set_color(SkColorSetARGB(kLauncherBackgroundAlpha, 0, 0, 0));
set_margins(gfx::Insets(kPadding, kPadding, kPadding, kPadding));
set_move_with_anchor(true);
views::BubbleDelegateView::CreateBubble(this);
« no previous file with comments | « ash/launcher/launcher_types.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698