diff options
author | Gilles Franck Mevaa <gillesd@google.com> | 2016-02-05 20:55:25 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2016-02-05 20:55:25 +0000 |
commit | 149963915568968c6a34ac91bb752f48b62c4532 (patch) | |
tree | 16089a715ddb445802c6217f8265e8011e19ed80 | |
parent | 1dbbda3b035f2e1e581bb8c403b1d351d2ccdbc9 (diff) | |
parent | ff17aadff23936dd3f89d10fdbc9cd91c866f6bf (diff) |
Merge "Spam Manager framework for event handling."
-rw-r--r-- | src/com/android/dialer/service/ExtendedBlockingManager.java | 38 | ||||
-rw-r--r-- | src/com/android/dialerbind/ObjectFactory.java | 10 |
2 files changed, 46 insertions, 2 deletions
diff --git a/src/com/android/dialer/service/ExtendedBlockingManager.java b/src/com/android/dialer/service/ExtendedBlockingManager.java new file mode 100644 index 000000000..3257a72c5 --- /dev/null +++ b/src/com/android/dialer/service/ExtendedBlockingManager.java @@ -0,0 +1,38 @@ +/* + * Copyright (C) 2016 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +package com.android.dialer.service; + +import android.support.annotation.Nullable; + +/** + * Manager of extended blocking events. It notifies all listeners of all blocking-related events. + */ +public interface ExtendedBlockingManager { + + interface ButtonRendererListener { + void onBlockedNumber(String number, @Nullable String countryIso); + void onUnblockedNumber(String number, @Nullable String countryIso); + } + + void addButtonRendererListener(@Nullable ButtonRendererListener listener); + + void removeButtonRendererListener(@Nullable ButtonRendererListener listener); + + void notifyOnBlockedNumber(String number, @Nullable String countryIso); + + void notifyOnUnblockedNumber(String number, @Nullable String countryIso); +} diff --git a/src/com/android/dialerbind/ObjectFactory.java b/src/com/android/dialerbind/ObjectFactory.java index d06d55e86..299d736f3 100644 --- a/src/com/android/dialerbind/ObjectFactory.java +++ b/src/com/android/dialerbind/ObjectFactory.java @@ -19,8 +19,7 @@ package com.android.dialerbind; import static com.android.dialer.calllog.CallLogAdapter.CallFetcher; import android.content.Context; -import android.view.View; -import android.view.ViewGroup; +import android.support.annotation.Nullable; import android.view.ViewStub; import com.android.dialer.calllog.CallLogAdapter; @@ -28,6 +27,7 @@ import com.android.dialer.calllog.ContactInfoHelper; import com.android.dialer.list.RegularSearchFragment; import com.android.dialer.logging.Logger; import com.android.dialer.service.CachedNumberLookupService; +import com.android.dialer.service.ExtendedBlockingManager; import com.android.dialer.service.SpamButtonRenderer; import com.android.dialer.voicemail.VoicemailPlaybackPresenter; @@ -45,12 +45,18 @@ public class ObjectFactory { return "com.android.dialer.database.filterednumberprovider"; } + @Nullable public static SpamButtonRenderer newSpamButtonRenderer( Context context, ViewStub stub) { return null; } + @Nullable + public static ExtendedBlockingManager getExtendedBlockingManager() { + return null; + } + /** * Create a new instance of the call log adapter. * @param context The context to use. |