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

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

Issue 1310513010: Support DomCode on Android devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_evdev
Patch Set: Remove Android keycode->domcode conversion path Created 5 years, 3 months 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 fc7c7325c96411913fbf329c98e4662fefea8dc1..8c34c708694530c5cf325e2caf5ded1f07bc676d 100644
--- a/content/public/browser/native_web_keyboard_event.h
+++ b/content/public/browser/native_web_keyboard_event.h
@@ -31,6 +31,7 @@ struct CONTENT_EXPORT NativeWebKeyboardEvent :
int modifiers,
double time_secs,
int keycode,
+ int scancode,
int unicode_character,
bool is_system_key);
// Takes ownership of android_key_event.
@@ -39,6 +40,7 @@ struct CONTENT_EXPORT NativeWebKeyboardEvent :
int modifiers,
double time_secs,
int keycode,
+ int scancode,
int unicode_character,
bool is_system_key);
#else

Powered by Google App Engine
This is Rietveld 408576698