diff options
author | Riddle Hsu <riddlehsu@google.com> | 2020-07-07 07:58:38 +0000 |
---|---|---|
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2020-07-07 07:58:38 +0000 |
commit | 7cab6acae9b6190ca6c0606a19e2d7e7631c5345 (patch) | |
tree | e9f3fd48f1d2b303e05f14fe2eb11c19fe1f5e0e /packages/CarSystemUI | |
parent | 732f43e51e9da6ddc07fb6c3f7db06e701afbfa0 (diff) | |
parent | 2d695313c903179baa1b34a45003bc09a1352ea1 (diff) |
Merge "Fix boot timeout and reduce boot time" into rvc-dev am: 2d695313c9
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/12085171
Change-Id: If8bc707a1a70dbbea14b36d25f0dc781f3b26a3f
Diffstat (limited to 'packages/CarSystemUI')
-rw-r--r-- | packages/CarSystemUI/src/com/android/systemui/car/statusbar/DummyNotificationShadeWindowController.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/CarSystemUI/src/com/android/systemui/car/statusbar/DummyNotificationShadeWindowController.java b/packages/CarSystemUI/src/com/android/systemui/car/statusbar/DummyNotificationShadeWindowController.java index a4230032858e..13f2b7ed45db 100644 --- a/packages/CarSystemUI/src/com/android/systemui/car/statusbar/DummyNotificationShadeWindowController.java +++ b/packages/CarSystemUI/src/com/android/systemui/car/statusbar/DummyNotificationShadeWindowController.java @@ -23,6 +23,7 @@ import android.view.WindowManager; import com.android.systemui.car.window.SystemUIOverlayWindowController; import com.android.systemui.colorextraction.SysuiColorExtractor; import com.android.systemui.dump.DumpManager; +import com.android.systemui.keyguard.KeyguardViewMediator; import com.android.systemui.plugins.statusbar.StatusBarStateController; import com.android.systemui.statusbar.phone.BiometricUnlockController; import com.android.systemui.statusbar.phone.DozeParameters; @@ -49,12 +50,14 @@ public class DummyNotificationShadeWindowController extends NotificationShadeWin DozeParameters dozeParameters, StatusBarStateController statusBarStateController, ConfigurationController configurationController, + KeyguardViewMediator keyguardViewMediator, KeyguardBypassController keyguardBypassController, SysuiColorExtractor colorExtractor, DumpManager dumpManager, SystemUIOverlayWindowController overlayWindowController) { super(context, windowManager, activityManager, dozeParameters, statusBarStateController, - configurationController, keyguardBypassController, colorExtractor, dumpManager); + configurationController, keyguardViewMediator, keyguardBypassController, + colorExtractor, dumpManager); mOverlayWindowController = overlayWindowController; } |