summaryrefslogtreecommitdiffstats
path: root/telecomm/java/com
diff options
context:
space:
mode:
authorRoman Birg <roman@cyngn.com>2016-01-11 16:28:50 -0800
committerGerrit Code Review <gerrit@cyanogenmod.org>2016-02-03 16:15:43 -0800
commit8d4de13c37fc4a69153c6acce7b5fc1c0617f935 (patch)
tree32b1f7e2b8fd61adf9d7d25675765cd45576a9df /telecomm/java/com
parent11d3a2dca6c4cd8a00fe96b1a9ab376a120ca2b6 (diff)
downloadframeworks_base-8d4de13c37fc4a69153c6acce7b5fc1c0617f935.zip
frameworks_base-8d4de13c37fc4a69153c6acce7b5fc1c0617f935.tar.gz
frameworks_base-8d4de13c37fc4a69153c6acce7b5fc1c0617f935.tar.bz2
add routing for explicit call transfer
Ref: CYNGNOS-1010 Change-Id: Ifd4150ce5589bdb586b3d840e967cc10be19fec4 Signed-off-by: Roman Birg <roman@cyngn.com>
Diffstat (limited to 'telecomm/java/com')
-rw-r--r--telecomm/java/com/android/internal/telecom/IConnectionService.aidl2
-rw-r--r--telecomm/java/com/android/internal/telecom/IInCallAdapter.aidl2
2 files changed, 4 insertions, 0 deletions
diff --git a/telecomm/java/com/android/internal/telecom/IConnectionService.aidl b/telecomm/java/com/android/internal/telecom/IConnectionService.aidl
index 23d70d5..26e2008 100644
--- a/telecomm/java/com/android/internal/telecom/IConnectionService.aidl
+++ b/telecomm/java/com/android/internal/telecom/IConnectionService.aidl
@@ -75,4 +75,6 @@ oneway interface IConnectionService {
void setLocalCallHold(String callId, boolean lchState);
void addParticipantWithConference(String callId, String recipients);
+
+ void explicitTransfer(String callId);
}
diff --git a/telecomm/java/com/android/internal/telecom/IInCallAdapter.aidl b/telecomm/java/com/android/internal/telecom/IInCallAdapter.aidl
index ee51efa..6ef8eda 100644
--- a/telecomm/java/com/android/internal/telecom/IInCallAdapter.aidl
+++ b/telecomm/java/com/android/internal/telecom/IInCallAdapter.aidl
@@ -62,4 +62,6 @@ oneway interface IInCallAdapter {
void turnOffProximitySensor(boolean screenOnImmediately);
void switchToOtherActiveSub(String subId);
+
+ void transferCall(String callId);
}