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

Commit 055e5a22 authored by Andrew Lee's avatar Andrew Lee
Browse files

Add video call profile constructor which takes video state only.

Bug: 16014280
Change-Id: I218256ae1e20783084412758cf5a44f7f5dec52e
parent d1c344e4
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -28711,6 +28711,7 @@ package android.telecomm {
  }
  public class VideoCallProfile implements android.os.Parcelable {
    ctor public VideoCallProfile(int);
    ctor public VideoCallProfile(int, int);
    method public int describeContents();
    method public int getQuality();
+9 −0
Original line number Diff line number Diff line
@@ -73,6 +73,15 @@ public class VideoCallProfile implements Parcelable {

    private final int mQuality;

    /**
     * Creates an instance of the VideoCallProfile
     *
     * @param videoState The video state.
     */
    public VideoCallProfile(int videoState) {
        this(videoState, QUALITY_DEFAULT);
    }

    /**
     * Creates an instance of the VideoCallProfile
     *