Index: ash/system/tray/system_tray.cc |
diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc |
index e1890daadac86ae353ebcd0020904e1f4415a70b..b48f1424ca261d3022332e3230fc20c95e4e6861 100644 |
--- a/ash/system/tray/system_tray.cc |
+++ b/ash/system/tray/system_tray.cc |
@@ -397,7 +397,8 @@ void SystemTray::ShowItems(const std::vector<SystemTrayItem*>& items, |
} else { |
TrayBubbleView::InitParams init_params(TrayBubbleView::ANCHOR_TYPE_TRAY, |
GetAnchorAlignment(), |
- kTrayPopupWidth); |
+ kTrayPopupMinWidth, |
+ kTrayPopupMaxWidth); |
init_params.can_activate = can_activate; |
if (detailed) { |
// This is the case where a volume control or brightness control bubble |
@@ -468,7 +469,8 @@ void SystemTray::UpdateNotificationBubble() { |
} |
TrayBubbleView::InitParams init_params(anchor_type, |
GetAnchorAlignment(), |
- kTrayPopupWidth); |
+ kTrayPopupMinWidth, |
+ kTrayPopupMaxWidth); |
init_params.arrow_color = kBackgroundColor; |
init_params.arrow_offset = GetTrayXOffset(notification_items_[0]); |
notification_bubble_.reset( |