summaryrefslogtreecommitdiff
path: root/include/android/keycodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/android/keycodes.h')
-rw-r--r--include/android/keycodes.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/android/keycodes.h b/include/android/keycodes.h
index 59d67f35f2..cfd2b403b5 100644
--- a/include/android/keycodes.h
+++ b/include/android/keycodes.h
@@ -769,7 +769,13 @@ enum {
/** all apps */
AKEYCODE_ALL_APPS = 284,
/** refresh key */
- AKEYCODE_REFRESH = 285
+ AKEYCODE_REFRESH = 285,
+ /** Thumbs up key. Apps can use this to let user upvote content. */
+ AKEYCODE_THUMBS_UP = 286,
+ /** Thumbs down key. Apps can use this to let user downvote content. */
+ AKEYCODE_THUMBS_DOWN = 287,
+ /** Consumed by system to switch current viewer profile. */
+ AKEYCODE_PROFILE_SWITCH = 288
// NOTE: If you add a new keycode here you must also add it to several other files.
// Refer to frameworks/base/core/java/android/view/KeyEvent.java for the full list.