| 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 UI_AURA_EVENT_FILTER_H_ | 5 #ifndef UI_AURA_EVENT_FILTER_H_ |
| 6 #define UI_AURA_EVENT_FILTER_H_ | 6 #define UI_AURA_EVENT_FILTER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "ui/aura/aura_export.h" | 10 #include "ui/aura/aura_export.h" |
| 11 #include "ui/base/events/event_constants.h" |
| 11 #include "ui/base/events/event_handler.h" | 12 #include "ui/base/events/event_handler.h" |
| 12 #include "ui/base/events.h" | |
| 13 | 13 |
| 14 namespace ui { | 14 namespace ui { |
| 15 class GestureEvent; | 15 class GestureEvent; |
| 16 class KeyEvent; | 16 class KeyEvent; |
| 17 class MouseEvent; | 17 class MouseEvent; |
| 18 class TouchEvent; | 18 class TouchEvent; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace aura { | 21 namespace aura { |
| 22 | 22 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 ui::ScrollEvent* event) OVERRIDE; | 70 ui::ScrollEvent* event) OVERRIDE; |
| 71 virtual ui::TouchStatus OnTouchEvent(ui::EventTarget* target, | 71 virtual ui::TouchStatus OnTouchEvent(ui::EventTarget* target, |
| 72 ui::TouchEvent* event) OVERRIDE; | 72 ui::TouchEvent* event) OVERRIDE; |
| 73 virtual ui::EventResult OnGestureEvent(ui::EventTarget* target, | 73 virtual ui::EventResult OnGestureEvent(ui::EventTarget* target, |
| 74 ui::GestureEvent* e) OVERRIDE; | 74 ui::GestureEvent* e) OVERRIDE; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace aura | 77 } // namespace aura |
| 78 | 78 |
| 79 #endif // UI_AURA_EVENT_FILTER_H_ | 79 #endif // UI_AURA_EVENT_FILTER_H_ |
| OLD | NEW |