1// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef ASH_SYSTEM_TRAY_VIEW_CLICK_LISTENER_H_
6#define ASH_SYSTEM_TRAY_VIEW_CLICK_LISTENER_H_
7
8namespace views {
9class View;
10}
11
12namespace ash {
13
14class ViewClickListener {
15 public:
16  virtual void OnViewClicked(views::View* sender) = 0;
17
18 protected:
19  virtual ~ViewClickListener() {}
20};
21
22}  // namespace ash
23
24#endif  // ASH_SYSTEM_TRAY_VIEW_CLICK_LISTENER_H_
25