Enable fingerprint sensor navigation to invoke QuickSettings
- rename "FP_NAV" to more generic "SYSTEM_NAVIGATION" based on other reviews.
Fixes bug 28869612
Change-Id: I384c0fa372a2ecda7250fccd0dbdfd6312423a85
diff --git a/include/android/keycodes.h b/include/android/keycodes.h
index a17c57a..e202060 100644
--- a/include/android/keycodes.h
+++ b/include/android/keycodes.h
@@ -759,13 +759,13 @@
/** Paste key. */
AKEYCODE_PASTE = 279,
/** fingerprint navigation key, up. */
- AKEYCODE_FP_NAV_UP = 280,
+ AKEYCODE_SYSTEM_NAVIGATION_UP = 280,
/** fingerprint navigation key, down. */
- AKEYCODE_FP_NAV_DOWN = 281,
+ AKEYCODE_SYSTEM_NAVIGATION_DOWN = 281,
/** fingerprint navigation key, left. */
- AKEYCODE_FP_NAV_LEFT = 282,
+ AKEYCODE_SYSTEM_NAVIGATION_LEFT = 282,
/** fingerprint navigation key, right. */
- AKEYCODE_FP_NAV_RIGHT = 283
+ AKEYCODE_SYSTEM_NAVIGATION_RIGHT = 283
// 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.