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.java24 import com.android.systemui.plugins.NotificationListenerController;
25 import com.android.systemui.plugins.NotificationListenerController.NotificationProvider;
37 PluginListener<NotificationListenerController> {
39 private ArrayList<NotificationListenerController> mPlugins = new ArrayList<>();
47 NotificationListenerController.class); in registerAsSystemService()
59 for (NotificationListenerController plugin : mPlugins) { in getActiveNotifications()
68 for (NotificationListenerController plugin : mPlugins) { in getCurrentRanking()
85 for (NotificationListenerController plugin : mPlugins) { in onPluginNotificationPosted()
99 for (NotificationListenerController plugin : mPlugins) { in onPluginNotificationRemoved()
112 public void onPluginConnected(NotificationListenerController plugin, Context pluginContext) { in onPluginConnected()
[all …]
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
DNotificationListenerController.java20 import com.android.systemui.plugins.NotificationListenerController.NotificationProvider;
24 @ProvidesInterface(action = NotificationListenerController.ACTION,
25 version = NotificationListenerController.VERSION)
27 public interface NotificationListenerController extends Plugin { interface