diff options
-rw-r--r-- | api/current.txt | 1 | ||||
-rw-r--r-- | api/system-current.txt | 1 | ||||
-rw-r--r-- | telecomm/java/android/telecom/Call.java | 1 |
3 files changed, 2 insertions, 1 deletions
diff --git a/api/current.txt b/api/current.txt index 83a81d5..1d2d96b 100644 --- a/api/current.txt +++ b/api/current.txt @@ -30062,6 +30062,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 9e98f28..17e438c 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -32167,6 +32167,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 a46585a..bbd5e30 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; |