summaryrefslogtreecommitdiffstats
path: root/ash/system/monitor/tray_monitor.h
diff options
context:
space:
mode:
Diffstat (limited to 'ash/system/monitor/tray_monitor.h')
-rw-r--r--ash/system/monitor/tray_monitor.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/ash/system/monitor/tray_monitor.h b/ash/system/monitor/tray_monitor.h
new file mode 100644
index 0000000..c397df4
--- /dev/null
+++ b/ash/system/monitor/tray_monitor.h
@@ -0,0 +1,39 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ASH_SYSTEM_DATE_TRAY_MONITOR_H_
+#define ASH_SYSTEM_DATE_TRAY_MONITOR_H_
+
+#include "ash/system/tray/system_tray_item.h"
+#include "base/timer.h"
+
+namespace views {
+class Label;
+}
+
+namespace ash {
+namespace internal {
+
+class TrayMonitor : public SystemTrayItem {
+ public:
+ TrayMonitor();
+ virtual ~TrayMonitor();
+
+ private:
+ // Overridden from SystemTrayItem.
+ virtual views::View* CreateTrayView(user::LoginStatus status) OVERRIDE;
+ virtual void DestroyTrayView() OVERRIDE;
+
+ void RefreshStats();
+
+ views::Label* label_;
+ base::RepeatingTimer<TrayMonitor> refresh_timer_;
+
+ DISALLOW_COPY_AND_ASSIGN(TrayMonitor);
+};
+
+} // namespace internal
+} // namespace ash
+
+#endif // ASH_SYSTEM_DATE_TRAY_MONITOR_H_