diff options
author | Ihab Awad <ihab@google.com> | 2014-08-07 19:46:01 -0700 |
---|---|---|
committer | Ihab Awad <ihab@google.com> | 2014-08-13 11:16:46 -0700 |
commit | b19a0bcdd8a5020c61a0d697f600fdc943c86f59 (patch) | |
tree | e75f35d1f391b17bb5b9b91c0fdb8a7b22629b9f /telephony/java/com | |
parent | 4a8dddbf18fedb33bb2c725db489669a141e1d73 (diff) | |
download | frameworks_base-b19a0bcdd8a5020c61a0d697f600fdc943c86f59.zip frameworks_base-b19a0bcdd8a5020c61a0d697f600fdc943c86f59.tar.gz frameworks_base-b19a0bcdd8a5020c61a0d697f600fdc943c86f59.tar.bz2 |
Final structural tweaks to Telecomm API (1/8)
Bug: 16416927
Bug: 16494880
Change-Id: I45fbe287c410cbb5e1b985f320b862d732811f43
Diffstat (limited to 'telephony/java/com')
3 files changed, 22 insertions, 22 deletions
diff --git a/telephony/java/com/android/ims/ImsCallProfile.java b/telephony/java/com/android/ims/ImsCallProfile.java index adcb435..dcd0b79 100644 --- a/telephony/java/com/android/ims/ImsCallProfile.java +++ b/telephony/java/com/android/ims/ImsCallProfile.java @@ -19,7 +19,7 @@ package com.android.ims; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; -import android.telecomm.VideoCallProfile; +import android.telecomm.VideoProfile; /** * Parcelable object to handle IMS call profile. @@ -290,7 +290,7 @@ public class ImsCallProfile implements Parcelable { /** * Converts from the call types defined in {@link com.android.ims.ImsCallProfile} to the - * video state values defined in {@link android.telecomm.VideoCallProfile}. + * video state values defined in {@link VideoProfile}. * * @param callType The call type. * @return The video state. @@ -298,32 +298,32 @@ public class ImsCallProfile implements Parcelable { public static int getVideoStateFromCallType(int callType) { switch (callType) { case CALL_TYPE_VT_NODIR: - return VideoCallProfile.VideoState.PAUSED | - VideoCallProfile.VideoState.BIDIRECTIONAL; + return VideoProfile.VideoState.PAUSED | + VideoProfile.VideoState.BIDIRECTIONAL; case CALL_TYPE_VT_TX: - return VideoCallProfile.VideoState.TX_ENABLED; + return VideoProfile.VideoState.TX_ENABLED; case CALL_TYPE_VT_RX: - return VideoCallProfile.VideoState.RX_ENABLED; + return VideoProfile.VideoState.RX_ENABLED; case CALL_TYPE_VT: - return VideoCallProfile.VideoState.BIDIRECTIONAL; + return VideoProfile.VideoState.BIDIRECTIONAL; case CALL_TYPE_VOICE: - return VideoCallProfile.VideoState.AUDIO_ONLY; + return VideoProfile.VideoState.AUDIO_ONLY; default: - return VideoCallProfile.VideoState.AUDIO_ONLY; + return VideoProfile.VideoState.AUDIO_ONLY; } } /** - * Converts from the video state values defined in {@link android.telecomm.VideoCallProfile} + * Converts from the video state values defined in {@link VideoProfile} * to the call types defined in {@link ImsCallProfile}. * * @param videoState The video state. * @return The call type. */ public static int getCallTypeFromVideoState(int videoState) { - boolean videoTx = isVideoStateSet(videoState, VideoCallProfile.VideoState.TX_ENABLED); - boolean videoRx = isVideoStateSet(videoState, VideoCallProfile.VideoState.RX_ENABLED); - boolean isPaused = isVideoStateSet(videoState, VideoCallProfile.VideoState.PAUSED); + boolean videoTx = isVideoStateSet(videoState, VideoProfile.VideoState.TX_ENABLED); + boolean videoRx = isVideoStateSet(videoState, VideoProfile.VideoState.RX_ENABLED); + boolean isPaused = isVideoStateSet(videoState, VideoProfile.VideoState.PAUSED); if (isPaused) { return ImsCallProfile.CALL_TYPE_VT_NODIR; } else if (videoTx && !videoRx) { diff --git a/telephony/java/com/android/ims/internal/IImsVideoCallCallback.aidl b/telephony/java/com/android/ims/internal/IImsVideoCallCallback.aidl index 6b8ec52..67bfe41 100644 --- a/telephony/java/com/android/ims/internal/IImsVideoCallCallback.aidl +++ b/telephony/java/com/android/ims/internal/IImsVideoCallCallback.aidl @@ -16,8 +16,8 @@ package com.android.ims.internal; -import android.telecomm.CallCameraCapabilities; -import android.telecomm.VideoCallProfile; +import android.telecomm.CameraCapabilities; +import android.telecomm.VideoProfile; /** * Internal remote interface for IMS's video call provider. @@ -32,10 +32,10 @@ import android.telecomm.VideoCallProfile; * {@hide} */ oneway interface IImsVideoCallCallback { - void receiveSessionModifyRequest(in VideoCallProfile videoCallProfile); + void receiveSessionModifyRequest(in VideoProfile videoProfile); - void receiveSessionModifyResponse(int status, in VideoCallProfile requestedProfile, - in VideoCallProfile responseProfile); + void receiveSessionModifyResponse(int status, in VideoProfile requestedProfile, + in VideoProfile responseProfile); void handleCallSessionEvent(int event); @@ -43,5 +43,5 @@ oneway interface IImsVideoCallCallback { void changeCallDataUsage(int dataUsage); - void changeCameraCapabilities(in CallCameraCapabilities callCameraCapabilities); + void changeCameraCapabilities(in CameraCapabilities cameraCapabilities); } diff --git a/telephony/java/com/android/ims/internal/IImsVideoCallProvider.aidl b/telephony/java/com/android/ims/internal/IImsVideoCallProvider.aidl index f8389ec..4db0d14 100644 --- a/telephony/java/com/android/ims/internal/IImsVideoCallProvider.aidl +++ b/telephony/java/com/android/ims/internal/IImsVideoCallProvider.aidl @@ -17,7 +17,7 @@ package com.android.ims.internal; import android.view.Surface; -import android.telecomm.VideoCallProfile; +import android.telecomm.VideoProfile; import com.android.ims.internal.IImsVideoCallCallback; @@ -52,9 +52,9 @@ oneway interface IImsVideoCallProvider { void setZoom(float value); - void sendSessionModifyRequest(in VideoCallProfile reqProfile); + void sendSessionModifyRequest(in VideoProfile reqProfile); - void sendSessionModifyResponse(in VideoCallProfile responseProfile); + void sendSessionModifyResponse(in VideoProfile responseProfile); void requestCameraCapabilities(); |