From 1e6f8343b59008545826c57e4781e2a4b3168f1d Mon Sep 17 00:00:00 2001 From: Abhijith Shastry Date: Mon, 29 Feb 2016 11:17:52 -0800 Subject: [PATCH] Add new API for creating intent to manage blocked numbers. The launchManageBlockedNumbersActivity API will be removed. BUG: 27364137 Change-Id: I440aaab521f5320bbc79b79f212ed1b418ce2d14 --- .../java/com/android/internal/telecom/ITelecomService.aidl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/telecomm/java/com/android/internal/telecom/ITelecomService.aidl b/telecomm/java/com/android/internal/telecom/ITelecomService.aidl index 95c8db54498c3..3c250f1b54fd5 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(); }