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

Commit 83ba6c29 authored by Andrew Lee's avatar Andrew Lee Committed by Android (Google) Code Review
Browse files

Merge "Adding getVideoState method to Telecomm Call's details." into lmp-dev

parents caa71192 7a341385
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -27996,6 +27996,7 @@ package android.telecomm {
    method public android.telecomm.GatewayInfo getGatewayInfo();
    method public android.net.Uri getHandle();
    method public int getHandlePresentation();
    method public int getVideoState();
  }
  public static abstract class Call.Listener {
+7 −0
Original line number Diff line number Diff line
@@ -153,6 +153,13 @@ public final class Call {
            return mGatewayInfo;
        }

        /**
         * @return Returns the video state of the {@code Call}.
         */
        public int getVideoState() {
            return mVideoState;
        }

        @Override
        public boolean equals(Object o) {
            if (o instanceof Details) {