diff --git a/api/current.txt b/api/current.txt index 75fb91081a7f6..4ca4f542a2277 100644 --- a/api/current.txt +++ b/api/current.txt @@ -30060,6 +30060,7 @@ package android.telecom { method public int getHandlePresentation(); method public android.telecom.StatusHints getStatusHints(); method public int getVideoState(); + field public static final int CAPABILITY_CAN_PAUSE_VIDEO = 1048576; // 0x100000 field public static final int CAPABILITY_DISCONNECT_FROM_CONFERENCE = 8192; // 0x2000 field public static final int CAPABILITY_GENERIC_CONFERENCE = 16384; // 0x4000 field public static final int CAPABILITY_HIGH_DEF_AUDIO = 32768; // 0x8000 diff --git a/api/system-current.txt b/api/system-current.txt index 1386e4cf715a2..61cd6e3c8a098 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -32165,6 +32165,7 @@ package android.telecom { method public int getHandlePresentation(); method public android.telecom.StatusHints getStatusHints(); method public int getVideoState(); + field public static final int CAPABILITY_CAN_PAUSE_VIDEO = 1048576; // 0x100000 field public static final int CAPABILITY_DISCONNECT_FROM_CONFERENCE = 8192; // 0x2000 field public static final int CAPABILITY_GENERIC_CONFERENCE = 16384; // 0x4000 field public static final int CAPABILITY_HIGH_DEF_AUDIO = 32768; // 0x8000 diff --git a/telecomm/java/android/telecom/Call.java b/telecomm/java/android/telecom/Call.java index a46585a473492..bbd5e30ebb9b0 100644 --- a/telecomm/java/android/telecom/Call.java +++ b/telecomm/java/android/telecom/Call.java @@ -213,7 +213,6 @@ public final class Call { /** * For video calls, indicates whether the outgoing video for the call can be paused using * the {@link android.telecom.VideoProfile.VideoState#PAUSED} VideoState. - * @hide */ public static final int CAPABILITY_CAN_PAUSE_VIDEO = 0x00100000;