Home
last modified time | relevance | path

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

/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/appprediction/
DPredictionAppTracker.java45 import com.android.systemui.plugins.AppLaunchEventsPlugin;
56 implements PluginListener<AppLaunchEventsPlugin> {
68 private final List<AppLaunchEventsPlugin> mAppLaunchEventsPluginsList;
83 .addPluginListener(this, AppLaunchEventsPlugin.class, true); in PredictionAppTracker()
184 mAppLaunchEventsPluginsList.forEach(AppLaunchEventsPlugin::onReturnedToHome); in onReturnedToHome()
268 public void onPluginConnected(AppLaunchEventsPlugin appLaunchEventsPlugin, Context context) { in onPluginConnected()
273 public void onPluginDisconnected(AppLaunchEventsPlugin appLaunchEventsPlugin) { in onPluginDisconnected()
/packages/apps/Launcher3/src_plugins/com/android/systemui/plugins/
DAppLaunchEventsPlugin.java26 @ProvidesInterface(action = AppLaunchEventsPlugin.ACTION, version = AppLaunchEventsPlugin.VERSION)
27 public interface AppLaunchEventsPlugin extends Plugin { interface