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

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

Merge "Add video call profile constructor which takes video state only." into lmp-dev

parents e8dc4bef 055e5a22
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
     *