diff options
author | Tyler Gunn <tgunn@google.com> | 2014-06-30 11:20:32 -0700 |
---|---|---|
committer | Tyler Gunn <tgunn@google.com> | 2014-06-30 11:20:32 -0700 |
commit | bff4131d404a99b54ad2b8f4b4abba7c991dd27b (patch) | |
tree | c8df5e65c22a46db7c555d129cf9727ebe32eb20 /telecomm/java/com | |
parent | dd59aba6c7e142eae14d5f29ea6873a5b9790174 (diff) | |
download | frameworks_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.aidl | 23 |
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); +} |