| 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)
|
| + NativeWebKeyboardEvent(ui::EventType type,
|
| + bool is_char,
|
| + wchar_t character,
|
| + int state,
|
| + double time_stamp_seconds);
|
| +#endif
|
|
|
| NativeWebKeyboardEvent(const NativeWebKeyboardEvent& event);
|
| ~NativeWebKeyboardEvent();
|
|
|