Home
last modified time | relevance | path

Searched refs:NotificationListenerController (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationListenerWithPlugins.java25 import com.android.systemui.plugins.NotificationListenerController;
26 import com.android.systemui.plugins.NotificationListenerController.NotificationProvider;
40 PluginListener<NotificationListenerController> {
42 private ArrayList<NotificationListenerController> mPlugins = new ArrayList<>();
56 mPluginManager.addPluginListener(this, NotificationListenerController.class); in registerAsSystemService()
68 for (NotificationListenerController plugin : mPlugins) { in getActiveNotifications()
90 for (NotificationListenerController plugin : mPlugins) { in onPluginNotificationPosted()
104 for (NotificationListenerController plugin : mPlugins) { in onPluginNotificationRemoved()
118 for (NotificationListenerController plugin : mPlugins) { in onPluginNotificationChannelModified()
127 for (NotificationListenerController plugin : mPlugins) { in onPluginRankingUpdate()
[all …]
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
DNotificationListenerController.java22 import com.android.systemui.plugins.NotificationListenerController.NotificationProvider;
26 @ProvidesInterface(action = NotificationListenerController.ACTION,
27 version = NotificationListenerController.VERSION)
29 public interface NotificationListenerController extends Plugin { interface