diff options
Diffstat (limited to 'ash/system/tray/system_tray.cc')
-rw-r--r-- | ash/system/tray/system_tray.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc index d225ce0..fcad87e 100644 --- a/ash/system/tray/system_tray.cc +++ b/ash/system/tray/system_tray.cc @@ -20,6 +20,7 @@ #include "ash/system/monitor/tray_monitor.h" #include "ash/system/power/power_supply_status.h" #include "ash/system/power/tray_power.h" +#include "ash/system/session_length_limit/tray_session_length_limit.h" #include "ash/system/settings/tray_settings.h" #include "ash/system/status_area_widget.h" #include "ash/system/tray/system_tray_delegate.h" @@ -128,6 +129,7 @@ void SystemTray::InitializeTrayItems(SystemTrayDelegate* delegate) { } void SystemTray::CreateItems(SystemTrayDelegate* delegate) { + AddTrayItem(new internal::TraySessionLengthLimit(this)); AddTrayItem(new internal::TrayLogoutButton(this)); AddTrayItem(new internal::TrayUser(this)); AddTrayItem(new internal::TrayIME(this)); |