Searched refs:NotificationListenerController (Results 1 – 2 of 2) sorted by relevance
25 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 …]
22 import com.android.systemui.plugins.NotificationListenerController.NotificationProvider;26 @ProvidesInterface(action = NotificationListenerController.ACTION,27 version = NotificationListenerController.VERSION)29 public interface NotificationListenerController extends Plugin { interface