diff options
-rw-r--r-- | api/current.txt | 1 | ||||
-rw-r--r-- | telecomm/java/android/telecomm/VideoCallProfile.java | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 9f502d7..8fc9f02 100644 --- a/api/current.txt +++ b/api/current.txt @@ -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(); diff --git a/telecomm/java/android/telecomm/VideoCallProfile.java b/telecomm/java/android/telecomm/VideoCallProfile.java index fc7b2c3..5b15e4a 100644 --- a/telecomm/java/android/telecomm/VideoCallProfile.java +++ b/telecomm/java/android/telecomm/VideoCallProfile.java @@ -77,6 +77,15 @@ public class VideoCallProfile implements Parcelable { * 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 + * + * @param videoState The video state. * @param quality The video quality. */ public VideoCallProfile(int videoState, int quality) { |