Chromium Code Reviews| Index: ash/system/tray/tray_constants.cc |
| diff --git a/ash/system/tray/tray_constants.cc b/ash/system/tray/tray_constants.cc |
| index db769ef6678e34614be1ce18e20b9a2339133bad..cdd56ffe046b0428d30feafe45ab0ab953e8d58c 100644 |
| --- a/ash/system/tray/tray_constants.cc |
| +++ b/ash/system/tray/tray_constants.cc |
| @@ -16,10 +16,10 @@ const int kPaddingFromInnerEdgeOfLauncherVerticalAlignment = 9; |
| const int kPaddingFromBottomOfScreenVerticalAlignment = 10; |
| // Padding used to position the system menu relative to the status area. |
| -const int kAlternateLayoutBubblePaddingHorizontalBottom = 6; |
| -const int kAlternateLayoutBubblePaddingHorizontalSide = 10; |
| -const int kAlternateLayoutBubblePaddingVerticalBottom = 3; |
| -const int kAlternateLayoutBubblePaddingVerticalSide = 15; |
| +const int kBubblePaddingHorizontalBottom = 6; |
| +const int kBubblePaddingHorizontalSide = 10; |
| +const int kBubblePaddingVerticalBottom = 3; |
| +const int kBubblePaddingVerticalSide = 15; |
| const int kPaddingFromEdgeOfShelf = 3; |
| @@ -73,19 +73,15 @@ const int kNotificationButtonWidth = 32; |
| const int kTrayNotificationContentsWidth = kTrayPopupMinWidth - |
| (kNotificationIconWidth + kNotificationButtonWidth + |
| (kTrayPopupPaddingHorizontal / 2) * 3); |
| -const int kTraySpacing = 8; |
| -const int kAlternateTraySpacing = 4; |
| -const int kShelfItemHeight = 31; |
| -const int kAlternateShelfItemHeight = 38; |
| +const int kTraySpacing = 4; |
| +const int kShelfItemHeight = 38; |
| int GetTraySpacing() { |
|
James Cook
2014/01/23 18:02:35
Maybe not for this CL, but references to this func
Harry McCleave
2014/01/24 22:48:47
ShelfItemHeight as well, will do in part 2.
|
| - return ash::switches::UseAlternateShelfLayout() ? |
| - kAlternateTraySpacing : kTraySpacing; |
| + return kTraySpacing; |
| } |
| int GetShelfItemHeight() { |
| - return ash::switches::UseAlternateShelfLayout() ? |
| - kAlternateShelfItemHeight : kShelfItemHeight; |
| + return kShelfItemHeight; |
| } |
| } // namespace ash |