Index: ash/system/tray/system_tray.cc |
diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc |
index 091f8caa87212790a787603a22468778c257161f..dbc27dc4bf5b4367985553d6ce6f148fa9d31b84 100644 |
--- a/ash/system/tray/system_tray.cc |
+++ b/ash/system/tray/system_tray.cc |
@@ -412,10 +412,8 @@ void SystemTray::ShowItems(const std::vector<SystemTrayItem*>& items, |
// This is the case where a volume control or brightness control bubble |
// is created. |
init_params.max_height = default_bubble_height_; |
- init_params.top_color = kBackgroundColor; |
init_params.arrow_color = kBackgroundColor; |
} else { |
- init_params.top_color = kBackgroundColor; |
init_params.arrow_color = kHeaderBackgroundColorDark; |
} |
init_params.arrow_offset = arrow_offset; |
@@ -480,7 +478,6 @@ void SystemTray::UpdateNotificationBubble() { |
TrayBubbleView::InitParams init_params(anchor_type, |
GetAnchorAlignment(), |
kTrayPopupWidth); |
- init_params.top_color = kBackgroundColor; |
init_params.arrow_color = kBackgroundColor; |
init_params.arrow_offset = GetTrayXOffset(notification_items_[0]); |
notification_bubble_.reset( |