Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 346dbe17 authored by Yuichiro Hanada's avatar Yuichiro Hanada
Browse files

Add new refresh key constant.

Bug: 64149858
Bug: 64662317
Test: Builds and manual tests with Chromebook.

Change-Id: I02f890375f1a956867b04bf76f69d668fb3a7f98
parent b984999c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -767,7 +767,9 @@ enum {
    /** fingerprint navigation key, right. */
    AKEYCODE_SYSTEM_NAVIGATION_RIGHT = 283,
    /** all apps */
    AKEYCODE_ALL_APPS = 284
    AKEYCODE_ALL_APPS = 284,
    /** refresh key */
    AKEYCODE_REFRESH = 285

    // 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.
+1 −0
Original line number Diff line number Diff line
@@ -324,6 +324,7 @@ static const InputEventLabel KEYCODES[] = {
    DEFINE_KEYCODE(SYSTEM_NAVIGATION_LEFT),
    DEFINE_KEYCODE(SYSTEM_NAVIGATION_RIGHT),
    DEFINE_KEYCODE(ALL_APPS),
    DEFINE_KEYCODE(REFRESH),

    { NULL, 0 }
};