summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Hinegardner <bhinegardner@google.com>2023-12-06 16:06:38 +0000
committerBrad Hinegardner <bhinegardner@google.com>2023-12-07 15:46:22 +0000
commit527f9f9010f210cd07686e53cb0ec5219f1561d4 (patch)
tree0fea4d2010f5c4090c6550bdf0acec85faca8395
parent4fe3fd8b9e2d951d921cc082cc089b2552059699 (diff)
downloadSystemUIGo-527f9f9010f210cd07686e53cb0ec5219f1561d4.tar.gz
Add KeyguardViewConfigurator to SystemUi Go
When keyguardBottomAreaRefactor flag is on, this will be required Bug: 314823675 Flag: NONE Test: turn keyguardBottomAreaRefactor flag on, build for mokey_go32 Change-Id: I17927c49b346d9fc6da4e68e6defd0c8bbda78f6
-rw-r--r--src/com/android/systemui/go/SystemUIGoCoreStartableModule.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/com/android/systemui/go/SystemUIGoCoreStartableModule.java b/src/com/android/systemui/go/SystemUIGoCoreStartableModule.java
index 0ca6f22..1c666ed 100644
--- a/src/com/android/systemui/go/SystemUIGoCoreStartableModule.java
+++ b/src/com/android/systemui/go/SystemUIGoCoreStartableModule.java
@@ -29,6 +29,7 @@ import com.android.systemui.clipboardoverlay.ClipboardListener;
import com.android.systemui.dagger.qualifiers.PerUser;
import com.android.systemui.globalactions.GlobalActionsComponent;
import com.android.systemui.keyboard.KeyboardUI;
+import com.android.systemui.keyguard.KeyguardViewConfigurator;
import com.android.systemui.keyguard.KeyguardViewMediator;
import com.android.systemui.log.SessionTracker;
import com.android.systemui.media.RingtonePlayer;
@@ -199,6 +200,11 @@ abstract class SystemUIGoCoreStartableModule {
@ClassKey(WMShell.class)
abstract CoreStartable bindWMShell(WMShell wmShell);
+ @Binds
+ @IntoMap
+ @ClassKey(KeyguardViewConfigurator.class)
+ abstract CoreStartable bindKeyguardViewConfigurator(KeyguardViewConfigurator impl);
+
/** Inject into ScrimController. */
@Binds
@IntoMap