summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Abhijith Shastry <ashastry@google.com> 2016-02-29 20:22:47 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2016-02-29 20:22:49 +0000
commitdbfe753c41d271d510ede9f344718f636ee3e3bf (patch)
tree8fcfce1fbaa2421966e3cd65ae72b21156bc8c5f
parent89dea902c184a981392ceca90d28a7b5986952fc (diff)
parent1e6f8343b59008545826c57e4781e2a4b3168f1d (diff)
Merge "Add new API for creating intent to manage blocked numbers." into nyc-dev
-rw-r--r--telecomm/java/com/android/internal/telecom/ITelecomService.aidl7
1 files changed, 7 insertions, 0 deletions
diff --git a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl
index 95c8db54498c..3c250f1b54fd 100644
--- a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl
+++ b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl
@@ -17,6 +17,7 @@
package com.android.internal.telecom;
import android.content.ComponentName;
+import android.content.Intent;
import android.telecom.ParcelableCallAnalytics;
import android.telecom.PhoneAccountHandle;
import android.net.Uri;
@@ -247,5 +248,11 @@ interface ITelecomService {
/**
* @see TelecomServiceImpl#launchManageBlockedNumbersActivity
**/
+ // TODO: Delete this.
void launchManageBlockedNumbersActivity(in String callingPackageName);
+
+ /**
+ * @see TelecomServiceImpl#createManageBlockedNumbersIntent
+ **/
+ Intent createManageBlockedNumbersIntent();
}