Index: ash/system/tray/system_tray.cc |
diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc |
index 64aee753e5a9b52899a82b38b577f4bec3cb01e2..e3a0e252ec4da23881170750b752095dd05d9249 100644 |
--- a/ash/system/tray/system_tray.cc |
+++ b/ash/system/tray/system_tray.cc |
@@ -53,7 +53,7 @@ |
#include "ash/system/chromeos/network/tray_vpn.h" |
#endif |
-using message_center::TrayBubbleView; |
+using views::TrayBubbleView; |
namespace ash { |
@@ -505,9 +505,12 @@ void SystemTray::AnchorUpdated() { |
notification_bubble_->bubble_view()->UpdateBubble(); |
// Ensure that the notification buble is above the launcher/status area. |
notification_bubble_->bubble_view()->GetWidget()->StackAtTop(); |
+ UpdateBubbleViewArrow(notification_bubble_->bubble_view()); |
} |
- if (system_bubble_.get()) |
+ if (system_bubble_.get()) { |
system_bubble_->bubble_view()->UpdateBubble(); |
+ UpdateBubbleViewArrow(system_bubble_->bubble_view()); |
+ } |
} |
string16 SystemTray::GetAccessibleNameForTray() { |