Removing some usage of shared prefs

Bug: 301661768
Test: Presubmit
Flag: N/A
Change-Id: I158e9a5148d2c9404ea4d2e9e239696b29dbeb20
This commit is contained in:
Sunny Goyal
2023-10-06 11:28:25 -07:00
parent 447b09057a
commit 576f7a5e80
9 changed files with 31 additions and 80 deletions

View File

@@ -18,7 +18,6 @@ package com.android.systemui.plugins;
import android.app.Activity;
import com.android.systemui.plugins.annotations.ProvidesInterface;
import com.android.systemui.plugins.shared.LauncherExterns;
import com.android.systemui.plugins.shared.LauncherOverlayManager;
/**
@@ -29,6 +28,6 @@ public interface LauncherOverlayPlugin extends Plugin {
String ACTION = "com.android.systemui.action.PLUGIN_LAUNCHER_OVERLAY";
int VERSION = 1;
LauncherOverlayManager createOverlayManager(Activity activity, LauncherExterns externs);
LauncherOverlayManager createOverlayManager(Activity activity);
}