| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ASH_COMMON_SYSTEM_TRAY_TRAY_EVENT_FILTER_H_ | 5 #ifndef ASH_SYSTEM_TRAY_TRAY_EVENT_FILTER_H_ |
| 6 #define ASH_COMMON_SYSTEM_TRAY_TRAY_EVENT_FILTER_H_ | 6 #define ASH_SYSTEM_TRAY_TRAY_EVENT_FILTER_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "ui/views/pointer_watcher.h" | 11 #include "ui/views/pointer_watcher.h" |
| 12 | 12 |
| 13 namespace gfx { | 13 namespace gfx { |
| 14 class Point; | 14 class Point; |
| 15 } | 15 } |
| 16 | 16 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 40 void ProcessPressedEvent(const gfx::Point& location_in_screen, | 40 void ProcessPressedEvent(const gfx::Point& location_in_screen, |
| 41 views::Widget* target); | 41 views::Widget* target); |
| 42 | 42 |
| 43 std::set<TrayBubbleWrapper*> wrappers_; | 43 std::set<TrayBubbleWrapper*> wrappers_; |
| 44 | 44 |
| 45 DISALLOW_COPY_AND_ASSIGN(TrayEventFilter); | 45 DISALLOW_COPY_AND_ASSIGN(TrayEventFilter); |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace ash | 48 } // namespace ash |
| 49 | 49 |
| 50 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_EVENT_FILTER_H_ | 50 #endif // ASH_SYSTEM_TRAY_TRAY_EVENT_FILTER_H_ |
| OLD | NEW |