diff options
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/Dependency.java')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/Dependency.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/Dependency.java b/packages/SystemUI/src/com/android/systemui/Dependency.java index a686fc086b40..cbfdce5d0c69 100644 --- a/packages/SystemUI/src/com/android/systemui/Dependency.java +++ b/packages/SystemUI/src/com/android/systemui/Dependency.java @@ -79,6 +79,8 @@ import com.android.systemui.statusbar.NotificationShadeWindowController; import com.android.systemui.statusbar.NotificationViewHierarchyManager; import com.android.systemui.statusbar.SmartReplyController; import com.android.systemui.statusbar.VibratorHelper; +import com.android.systemui.statusbar.events.PrivacyDotViewController; +import com.android.systemui.statusbar.events.SystemStatusAnimationScheduler; import com.android.systemui.statusbar.notification.NotificationEntryManager; import com.android.systemui.statusbar.notification.NotificationEntryManager.KeyguardEnvironment; import com.android.systemui.statusbar.notification.NotificationFilter; @@ -352,6 +354,8 @@ public class Dependency { @Inject Lazy<DeviceConfigProxy> mDeviceConfigProxy; @Inject Lazy<NavigationBarOverlayController> mNavbarButtonsControllerLazy; @Inject Lazy<TelephonyListenerManager> mTelephonyListenerManager; + @Inject Lazy<SystemStatusAnimationScheduler> mSystemStatusAnimationSchedulerLazy; + @Inject Lazy<PrivacyDotViewController> mPrivacyDotViewControllerLazy; @Inject public Dependency() { @@ -561,6 +565,10 @@ public class Dependency { mProviders.put(NavigationBarOverlayController.class, mNavbarButtonsControllerLazy::get); + mProviders.put(SystemStatusAnimationScheduler.class, + mSystemStatusAnimationSchedulerLazy::get); + mProviders.put(PrivacyDotViewController.class, mPrivacyDotViewControllerLazy::get); + Dependency.setInstance(this); } |