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

Commit ca515e30 authored by Jinsuk Kim's avatar Jinsuk Kim Committed by Android (Google) Code Review
Browse files

Merge "Added an argument isPressed to HdmiControlService#sendKeyEvent"

parents b8d5f476 0d3985a9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -40,6 +40,6 @@ interface IHdmiControlService {
    void addDeviceEventListener(IHdmiDeviceEventListener listener);
    void deviceSelect(int logicalAddress, IHdmiControlCallback callback);
    void portSelect(int portId, IHdmiControlCallback callback);
    void sendKeyEvent(int keyCode);
    void sendKeyEvent(int keyCode, boolean isPressed);
    List<HdmiPortInfo> getPortInfo();
}
+1 −1
Original line number Diff line number Diff line
@@ -897,7 +897,7 @@ public final class HdmiControlService extends SystemService {
        }

        @Override
        public void sendKeyEvent(int keyCode) {
        public void sendKeyEvent(int keyCode, boolean isPressed) {
            // TODO: Implement this
        }