summaryrefslogtreecommitdiffstats
path: root/chromium/ash/system/tray/view_click_listener.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ash/system/tray/view_click_listener.h')
-rw-r--r--chromium/ash/system/tray/view_click_listener.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/chromium/ash/system/tray/view_click_listener.h b/chromium/ash/system/tray/view_click_listener.h
deleted file mode 100644
index b5f4bb886f0..00000000000
--- a/chromium/ash/system/tray/view_click_listener.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2013 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_TRAY_VIEW_CLICK_LISTENER_H_
-#define ASH_SYSTEM_TRAY_VIEW_CLICK_LISTENER_H_
-
-namespace views {
-class View;
-}
-
-namespace ash {
-namespace internal {
-
-class ViewClickListener {
- public:
- virtual void OnViewClicked(views::View* sender) = 0;
-
- protected:
- virtual ~ViewClickListener() {}
-};
-
-} // namespace internal
-} // namespace ash
-
-#endif // ASH_SYSTEM_TRAY_VIEW_CLICK_LISTENER_H_