Chromium Code Reviews| Index: content/public/browser/native_web_keyboard_event.h |
| diff --git a/content/public/browser/native_web_keyboard_event.h b/content/public/browser/native_web_keyboard_event.h |
| index 35cc052ff03bafde18c76f723c403bec7a02544e..e2fc5cba7faeee7e11200b7ed398747212e57b8f 100644 |
| --- a/content/public/browser/native_web_keyboard_event.h |
| +++ b/content/public/browser/native_web_keyboard_event.h |
| @@ -11,6 +11,7 @@ |
| #include "build/build_config.h" |
| #include "content/common/content_export.h" |
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
| +#include "ui/base/events.h" |
| #include "ui/gfx/native_widget_types.h" |
| // Owns a platform specific event; used to pass own and pass event through |
| @@ -29,6 +30,13 @@ struct CONTENT_EXPORT NativeWebKeyboardEvent : |
| int state, |
| double time_stamp_seconds); |
| #endif |
| +#if defined(USE_AURA) |
|
Ben Goodger (Google)
2011/12/12 16:51:03
I believe you may want to run this before the ones
Yusuke Sato
2011/12/14 13:42:04
Done.
|
| + NativeWebKeyboardEvent(ui::EventType type, |
| + bool is_char, |
| + wchar_t character, |
| + int state, |
| + double time_stamp_seconds); |
| +#endif |
| NativeWebKeyboardEvent(const NativeWebKeyboardEvent& event); |
| ~NativeWebKeyboardEvent(); |