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

Commit d9657d01 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add HDMI to Source"

parents 16a78e63 70ac1068
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -48,6 +48,7 @@ enum Source {
  TOUCH_NAVIGATION = 2097152,
  ROTARY_ENCODER = 4194304,
  JOYSTICK = 16777232,
  HDMI = 33554433,
  SENSOR = 67108864,
  ANY = -256,
}
+5 −0
Original line number Diff line number Diff line
@@ -38,6 +38,11 @@ enum Source {
    TOUCH_NAVIGATION = (1 << 21) | SourceClass.NONE,
    ROTARY_ENCODER = (1 << 22) | SourceClass.NONE,
    JOYSTICK = (1 << 24) | SourceClass.JOYSTICK,
    /**
     * The input source is a device connected through HDMI-based bus.
     * The keys come in through HDMI-CEC or MHL signal line.
     */
    HDMI = (1 << 25) | SourceClass.BUTTON,
    SENSOR = (1 << 26) | SourceClass.NONE,
    ANY = 0xFFFFFF00,
}