summaryrefslogtreecommitdiffstats
path: root/telecomm/java/com
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2014-07-16 10:11:42 -0700
committerAndrew Lee <anwlee@google.com>2014-07-17 12:56:49 -0700
commit8da4c3c11faf066b2b04ba853f03be6f1c4af5d8 (patch)
tree63c98295a7756a708bc7acf746e82b39c64f9e6a /telecomm/java/com
parente2e280ec591d59f47d55b8a8552de2f4c7fb1636 (diff)
downloadframeworks_base-8da4c3c11faf066b2b04ba853f03be6f1c4af5d8.zip
frameworks_base-8da4c3c11faf066b2b04ba853f03be6f1c4af5d8.tar.gz
frameworks_base-8da4c3c11faf066b2b04ba853f03be6f1c4af5d8.tar.bz2
Pass through video state when answering a call.
Bug: 16013878 Bug: 16015750 Change-Id: Ia9ba6e5f78fcb64e1089db99f5ce11d0ef858ac9
Diffstat (limited to 'telecomm/java/com')
-rw-r--r--telecomm/java/com/android/internal/telecomm/IConnectionService.aidl2
-rw-r--r--telecomm/java/com/android/internal/telecomm/IInCallAdapter.aidl2
2 files changed, 2 insertions, 2 deletions
diff --git a/telecomm/java/com/android/internal/telecomm/IConnectionService.aidl b/telecomm/java/com/android/internal/telecomm/IConnectionService.aidl
index 9360219..05375c9 100644
--- a/telecomm/java/com/android/internal/telecomm/IConnectionService.aidl
+++ b/telecomm/java/com/android/internal/telecomm/IConnectionService.aidl
@@ -36,7 +36,7 @@ oneway interface IConnectionService {
void abort(String callId);
- void answer(String callId);
+ void answer(String callId, int videoState);
void reject(String callId);
diff --git a/telecomm/java/com/android/internal/telecomm/IInCallAdapter.aidl b/telecomm/java/com/android/internal/telecomm/IInCallAdapter.aidl
index b5b239b..aca8c0a 100644
--- a/telecomm/java/com/android/internal/telecomm/IInCallAdapter.aidl
+++ b/telecomm/java/com/android/internal/telecomm/IInCallAdapter.aidl
@@ -27,7 +27,7 @@ import android.telecomm.PhoneAccount;
* {@hide}
*/
oneway interface IInCallAdapter {
- void answerCall(String callId);
+ void answerCall(String callId, int videoState);
void rejectCall(String callId, boolean rejectWithMessage, String textMessage);