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

Commit 2738e2d8 authored by Jungshik Jang's avatar Jungshik Jang
Browse files

Implement missing mhl apis

1. get_supported_features
2. get_ecbug_device_rols
3. set_option in native.
4. get_mhl_version
5. get_peer_mhl_version
6. send_scratchpad_command
 - it includes send_scratchpad_command but does not include
  java side implementation. It will be added when we implement
  scratchpad.

Bug: 17096490

Change-Id: Iacb4a41234cbbd2d832908b48d188bd81a301b0f
parent 3acf66f5
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -495,6 +495,10 @@ public final class HdmiControlService extends SystemService {
        }
    }

    List<HdmiPortInfo> getPortInfo() {
        return mPortInfo;
    }

    /**
     * Returns HDMI port information for the given port id.
     *
@@ -1110,7 +1114,7 @@ public final class HdmiControlService extends SystemService {
        @Override
        public List<HdmiPortInfo> getPortInfo() {
            enforceAccessPermission();
            return mPortInfo;
            return HdmiControlService.this.getPortInfo();
        }

        @Override