summaryrefslogtreecommitdiffstats
path: root/telecomm/java/com
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2014-10-02 09:38:39 -0700
committerYorke Lee <yorkelee@google.com>2014-10-06 15:09:00 -0700
commitc3cf982d18e28fc27126265422f36c5e845808db (patch)
treed4142ba5d1294e1ad23727aa3192b8e310ceb6b7 /telecomm/java/com
parent17d7c79650664c7a112ab175cb2329d2062f4d1e (diff)
downloadframeworks_base-c3cf982d18e28fc27126265422f36c5e845808db.zip
frameworks_base-c3cf982d18e28fc27126265422f36c5e845808db.tar.gz
frameworks_base-c3cf982d18e28fc27126265422f36c5e845808db.tar.bz2
Add ability to add sim-initiated MO call to UI (2/4)
Add supporting (hidden) APIs to TelecomManager to add the ability to add a previous unknown call to Telecom Bug: 17787391 Change-Id: Ibdfaee81a55e11451c146751cf970980dccad435
Diffstat (limited to 'telecomm/java/com')
-rw-r--r--telecomm/java/com/android/internal/telecom/IConnectionService.aidl3
-rw-r--r--telecomm/java/com/android/internal/telecom/ITelecomService.aidl5
2 files changed, 7 insertions, 1 deletions
diff --git a/telecomm/java/com/android/internal/telecom/IConnectionService.aidl b/telecomm/java/com/android/internal/telecom/IConnectionService.aidl
index 1059da3..339a982 100644
--- a/telecomm/java/com/android/internal/telecom/IConnectionService.aidl
+++ b/telecomm/java/com/android/internal/telecom/IConnectionService.aidl
@@ -39,7 +39,8 @@ oneway interface IConnectionService {
in PhoneAccountHandle connectionManagerPhoneAccount,
String callId,
in ConnectionRequest request,
- boolean isIncoming);
+ boolean isIncoming,
+ boolean isUnknown);
void abort(String callId);
diff --git a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl
index feb09d5..f1cf885 100644
--- a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl
+++ b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl
@@ -177,4 +177,9 @@ interface ITelecomService {
* @see TelecomServiceImpl#addNewIncomingCall
*/
void addNewIncomingCall(in PhoneAccountHandle phoneAccount, in Bundle extras);
+
+ /**
+ * @see TelecomServiceImpl#addNewUnknownCall
+ */
+ void addNewUnknownCall(in PhoneAccountHandle phoneAccount, in Bundle extras);
}