diff options
author | jennyz@chromium.org <jennyz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-19 22:08:27 +0000 |
---|---|---|
committer | jennyz@chromium.org <jennyz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-19 22:08:27 +0000 |
commit | fcbe2b73a3b878e90b87b41061dc80bca84fdccd (patch) | |
tree | 1a0bcb9fe7792420fdc97e50064463fcbaca240a /ash | |
parent | a3ce9cab561acd01edfa3e29857b87a4f3062a83 (diff) | |
download | chromium_src-fcbe2b73a3b878e90b87b41061dc80bca84fdccd.zip chromium_src-fcbe2b73a3b878e90b87b41061dc80bca84fdccd.tar.gz chromium_src-fcbe2b73a3b878e90b87b41061dc80bca84fdccd.tar.bz2 |
Move the udpater indicator below settings line in uber tray bubble.
BUG=166829
Review URL: https://codereview.chromium.org/11636029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174012 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash')
-rw-r--r-- | ash/system/tray/system_tray.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc index dc9c173..66578c7 100644 --- a/ash/system/tray/system_tray.cc +++ b/ash/system/tray/system_tray.cc @@ -149,9 +149,9 @@ void SystemTray::CreateItems(SystemTrayDelegate* delegate) { #endif AddTrayItem(new internal::TrayVolume(this)); AddTrayItem(new internal::TrayBrightness(this)); - AddTrayItem(new internal::TrayUpdate(this)); AddTrayItem(new internal::TrayCapsLock(this)); AddTrayItem(new internal::TraySettings(this)); + AddTrayItem(new internal::TrayUpdate(this)); AddTrayItem(new internal::TrayDate(this)); #if defined(OS_LINUX) |