| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 AURA_EVENT_H_ | 5 #ifndef UI_AURA_EVENT_H_ |
| 6 #define AURA_EVENT_H_ | 6 #define UI_AURA_EVENT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "aura/aura_export.h" | |
| 10 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 11 #include "base/time.h" | 10 #include "base/time.h" |
| 11 #include "ui/aura/aura_export.h" |
| 12 #include "ui/base/events.h" | 12 #include "ui/base/events.h" |
| 13 #include "ui/base/keycodes/keyboard_codes.h" | 13 #include "ui/base/keycodes/keyboard_codes.h" |
| 14 #include "ui/gfx/point.h" | 14 #include "ui/gfx/point.h" |
| 15 | 15 |
| 16 #if defined(USE_X11) | 16 #if defined(USE_X11) |
| 17 typedef union _XEvent XEvent; | 17 typedef union _XEvent XEvent; |
| 18 #endif | 18 #endif |
| 19 | 19 |
| 20 namespace aura { | 20 namespace aura { |
| 21 | 21 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 int flags); | 101 int flags); |
| 102 | 102 |
| 103 ui::KeyboardCode key_code() const { return key_code_; } | 103 ui::KeyboardCode key_code() const { return key_code_; } |
| 104 | 104 |
| 105 private: | 105 private: |
| 106 ui::KeyboardCode key_code_; | 106 ui::KeyboardCode key_code_; |
| 107 }; | 107 }; |
| 108 | 108 |
| 109 } // namespace aura | 109 } // namespace aura |
| 110 | 110 |
| 111 #endif // AURA_EVENT_H_ | 111 #endif // UI_AURA_EVENT_H_ |
| OLD | NEW |