Index: ui/message_center/message_bubble_base.cc |
diff --git a/ui/message_center/message_bubble_base.cc b/ui/message_center/message_bubble_base.cc |
index 4bbcefd8729b3ba093fdb5a0c087fc0aac821c08..06121e39c1f10b4f9c04f4700bf19b034c8c27be 100644 |
--- a/ui/message_center/message_bubble_base.cc |
+++ b/ui/message_center/message_bubble_base.cc |
@@ -13,7 +13,6 @@ namespace { |
// Delay laying out the MessageBubbleBase until all notifications have been |
// added and icons have had a chance to load. |
const int kUpdateDelayMs = 50; |
-const int kNotificationBubbleWidth = 300; |
} |
namespace message_center { |
@@ -59,9 +58,9 @@ views::TrayBubbleView::InitParams MessageBubbleBase::GetDefaultInitParams( |
views::TrayBubbleView::InitParams init_params( |
views::TrayBubbleView::ANCHOR_TYPE_TRAY, |
anchor_alignment, |
- kNotificationBubbleWidth); |
+ kWebNotificationWidth, |
+ kWebNotificationWidth); |
init_params.arrow_color = kHeaderBackgroundColorDark; |
- init_params.bubble_width = kWebNotificationWidth; |
return init_params; |
} |