summaryrefslogtreecommitdiffstats
path: root/telecomm/java/com
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2014-06-30 11:20:32 -0700
committerTyler Gunn <tgunn@google.com>2014-06-30 11:20:32 -0700
commitbff4131d404a99b54ad2b8f4b4abba7c991dd27b (patch)
treec8df5e65c22a46db7c555d129cf9727ebe32eb20 /telecomm/java/com
parentdd59aba6c7e142eae14d5f29ea6873a5b9790174 (diff)
downloadframeworks_base-bff4131d404a99b54ad2b8f4b4abba7c991dd27b.zip
frameworks_base-bff4131d404a99b54ad2b8f4b4abba7c991dd27b.tar.gz
frameworks_base-bff4131d404a99b54ad2b8f4b4abba7c991dd27b.tar.bz2
Added API methods for the CallVideoProvider.
Cleaned up comments in CallVideoClient to match. Bug: 15893156 Change-Id: I9b1268726e64c2b73441272dae8d6a719a32fa16
Diffstat (limited to 'telecomm/java/com')
-rw-r--r--telecomm/java/com/android/internal/telecomm/ICallVideoProvider.aidl23
1 files changed, 22 insertions, 1 deletions
diff --git a/telecomm/java/com/android/internal/telecomm/ICallVideoProvider.aidl b/telecomm/java/com/android/internal/telecomm/ICallVideoProvider.aidl
index c116dcb..f6587b7 100644
--- a/telecomm/java/com/android/internal/telecomm/ICallVideoProvider.aidl
+++ b/telecomm/java/com/android/internal/telecomm/ICallVideoProvider.aidl
@@ -16,6 +16,9 @@
package com.android.internal.telecomm;
+import android.view.Surface;
+import android.telecomm.VideoCallProfile;
+
/**
* Internal remote interface for a call video provider.
* @see android.telecomm.CallVideoProvider
@@ -23,4 +26,22 @@ package com.android.internal.telecomm;
*/
oneway interface ICallVideoProvider {
void setCamera(String cameraId);
-} \ No newline at end of file
+
+ void setPreviewSurface(in Surface surface);
+
+ void setDisplaySurface(in Surface surface);
+
+ void setDeviceOrientation(int rotation);
+
+ void setZoom(float value);
+
+ void sendSessionModifyRequest(in VideoCallProfile reqProfile);
+
+ void sendSessionModifyResponse(in VideoCallProfile responseProfile);
+
+ void requestCameraCapabilities();
+
+ void requestCallDataUsage();
+
+ void setPauseImage(String uri);
+}