summaryrefslogtreecommitdiff
path: root/chromium/ash/system/monitor/tray_monitor.h
blob: 31c4f146cda601213f9677c8c620924793e14937 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// 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 <list>

#include "ash/system/tray/system_tray_item.h"
#include "base/process/process.h"
#include "base/timer/timer.h"

namespace views {
class Label;
}

namespace ash {
namespace internal {

class TrayMonitor : public SystemTrayItem {
 public:
  explicit TrayMonitor(SystemTray* system_tray);
  virtual ~TrayMonitor();

 private:
  // Overridden from SystemTrayItem.
  virtual views::View* CreateTrayView(user::LoginStatus status) OVERRIDE;
  virtual void DestroyTrayView() OVERRIDE;

  void OnTimer();
  void OnGotHandles(const std::list<base::ProcessHandle>& handles);

  views::Label* label_;
  base::RepeatingTimer<TrayMonitor> refresh_timer_;

  DISALLOW_COPY_AND_ASSIGN(TrayMonitor);
};

}  // namespace internal
}  // namespace ash

#endif  // ASH_SYSTEM_DATE_TRAY_MONITOR_H_