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

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

Issue 11229022: Move ash/system/web_notification message_center to ui/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase again. Created 8 years, 2 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
« no previous file with comments | « ash/system/tray/system_tray.h ('k') | ash/system/tray/system_tray_bubble.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
« no previous file with comments | « ash/system/tray/system_tray.h ('k') | ash/system/tray/system_tray_bubble.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698