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

Unified Diff: ash/system/tray/system_tray.cc

Issue 140323010: Ash:Shelf - Cleanup of Alternate Shelf (part 1) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase + remove AlternateShelf from variable names Created 6 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: ash/system/tray/system_tray.cc
diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc
index 48d90c51e27781aa5d960d0c9b8ad996a2ae4d34..8fee7e48c02b2a68c7cc7388fe9d76f8e8fc0175 100644
--- a/ash/system/tray/system_tray.cc
+++ b/ash/system/tray/system_tray.cc
@@ -94,11 +94,9 @@ class SystemBubbleWrapper {
bubble_->InitView(anchor, login_status, init_params);
bubble_wrapper_.reset(
new internal::TrayBubbleWrapper(tray, bubble_->bubble_view()));
- if (ash::switches::UseAlternateShelfLayout()) {
- // The system bubble should not have an arrow.
- bubble_->bubble_view()->SetArrowPaintType(
- views::BubbleBorder::PAINT_NONE);
- }
+ // The system bubble should not have an arrow.
+ bubble_->bubble_view()->SetArrowPaintType(
+ views::BubbleBorder::PAINT_NONE);
is_persistent_ = is_persistent;
// If ChromeVox is enabled, focus the default item if no item is focused.
@@ -488,8 +486,7 @@ void SystemTray::ShowItems(const std::vector<SystemTrayItem*>& items,
menu_width,
kTrayPopupMaxWidth);
init_params.can_activate = can_activate;
- init_params.first_item_has_no_margin =
- ash::switches::UseAlternateShelfLayout();
+ init_params.first_item_has_no_margin = true;
James Cook 2014/01/23 18:02:35 Just to double-check, and not for this CL, is firs
Harry McCleave 2014/01/24 22:48:47 I thought it was the case it was false for some bu
James Cook 2014/01/25 00:12:14 I didn't see any obvious cases where it was false,
Mr4D (OOO till 08-26) 2014/01/25 01:37:38 Hmm. The Bubble code gets used in many places. e.g
if (detailed) {
// This is the case where a volume control or brightness control bubble
// is created.
@@ -560,8 +557,7 @@ void SystemTray::UpdateNotificationBubble() {
GetAnchorAlignment(),
kTrayPopupMinWidth,
kTrayPopupMaxWidth);
- init_params.first_item_has_no_margin =
- ash::switches::UseAlternateShelfLayout();
+ init_params.first_item_has_no_margin = true;
init_params.arrow_color = kBackgroundColor;
init_params.arrow_offset = GetTrayXOffset(notification_items_[0]);
notification_bubble_.reset(

Powered by Google App Engine
This is Rietveld 408576698