Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1518)

Unified Diff: content/public/browser/native_web_keyboard_event.h

Issue 8576005: IME (input method editor) support for Aura, part 3 of 3: Use ui::InputMethod in ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moved IME code to aura_shell, not ready for review though Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698