summaryrefslogtreecommitdiffstats
path: root/telecomm/java/com
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-05-12 16:18:03 -0700
committerYorke Lee <yorkelee@google.com>2015-05-12 16:45:14 -0700
commit32f24731604fd81289a39619bbc925b65184b505 (patch)
tree50a45438a33dc3e8e9d6b444a0974097f52a1c85 /telecomm/java/com
parent0ca0f5800034f5fbd041d31617efa75f9d727885 (diff)
downloadframeworks_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/com')
-rw-r--r--telecomm/java/com/android/internal/telecom/IVideoProvider.aidl3
1 files changed, 2 insertions, 1 deletions
diff --git a/telecomm/java/com/android/internal/telecom/IVideoProvider.aidl b/telecomm/java/com/android/internal/telecom/IVideoProvider.aidl
index d095744..68e5fd4 100644
--- a/telecomm/java/com/android/internal/telecom/IVideoProvider.aidl
+++ b/telecomm/java/com/android/internal/telecom/IVideoProvider.aidl
@@ -16,6 +16,7 @@
package com.android.internal.telecom;
+import android.net.Uri;
import android.view.Surface;
import android.telecom.VideoProfile;
@@ -47,5 +48,5 @@ oneway interface IVideoProvider {
void requestCallDataUsage();
- void setPauseImage(String uri);
+ void setPauseImage(in Uri uri);
}