diff options
author | Yorke Lee <yorkelee@google.com> | 2015-05-12 16:18:03 -0700 |
---|---|---|
committer | Yorke Lee <yorkelee@google.com> | 2015-05-12 16:45:14 -0700 |
commit | 32f24731604fd81289a39619bbc925b65184b505 (patch) | |
tree | 50a45438a33dc3e8e9d6b444a0974097f52a1c85 /telecomm/java/android/telecom/Call.java | |
parent | 0ca0f5800034f5fbd041d31617efa75f9d727885 (diff) | |
download | frameworks_base-32f24731604fd81289a39619bbc925b65184b505.zip frameworks_base-32f24731604fd81289a39619bbc925b65184b505.tar.gz frameworks_base-32f24731604fd81289a39619bbc925b65184b505.tar.bz2 |
More video related API fixes
android.telecom.Connection.VideoProvider
* onSetPauseImage takes Uri instead of String
* changeCallDataUsage -> setCallDataUsage
* add quality constants to changeVideoQuality() docs
android.telecom.InCallService.VideoCall
* setPauseImage takes Uri instea dof String
android.telecom.VideoProfile.VideoState
* Move constants to VideoProfile, prefix with STATE_
Bug: 21040387
Bug: 21066505
Change-Id: I764e72aced9d1e2d30d6d0cf0862100860d47c79
Diffstat (limited to 'telecomm/java/android/telecom/Call.java')
-rw-r--r-- | telecomm/java/android/telecom/Call.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/telecomm/java/android/telecom/Call.java b/telecomm/java/android/telecom/Call.java index adab00b..d74c61c 100644 --- a/telecomm/java/android/telecom/Call.java +++ b/telecomm/java/android/telecom/Call.java @@ -202,7 +202,7 @@ 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. + * the {@link android.telecom.VideoProfile#STATE_PAUSED} VideoState. */ public static final int CAPABILITY_CAN_PAUSE_VIDEO = 0x00100000; |