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

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

Issue 9561003: ash uber tray: Add a tray item for the user. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 10 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
Index: ash/system/tray/system_tray.cc
diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc
index 1f7104ab4bf977d27ecca231f496f9f3a8a3fa71..cbb9128dd65832f7b50554e8c64f1acb2a35f4b9 100644
--- a/ash/system/tray/system_tray.cc
+++ b/ash/system/tray/system_tray.cc
@@ -93,7 +93,7 @@ void SystemTray::AddTrayItem(SystemTrayItem* item) {
views::View* tray_item = item->CreateTrayView();
if (tray_item) {
- AddChildView(tray_item);
+ AddChildViewAt(tray_item, 0);
PreferredSizeChanged();
}
}

Powered by Google App Engine
This is Rietveld 408576698