diff options
author | Dave Mankoff <mankoff@google.com> | 2020-10-02 11:32:36 -0400 |
---|---|---|
committer | Dave Mankoff <mankoff@google.com> | 2020-10-19 17:32:19 -0400 |
commit | c078bc2ad0d634c97b5f80e6ed7cfac0727cf2ea (patch) | |
tree | ddea3742afa61dc57b9ecbb1a0ae105ab0cc55fb /packages/SystemUI/src/com/android/keyguard/KeyguardRootViewController.java | |
parent | 96aaf608b1ccbcc6e4efb28d00ab8eda16dd1f07 (diff) |
1/N Add QSFragmentComponent
This introduces the QSFragmentComponent as a way to create
QS related view controllers. The QSPanelController is introduced, but
doesn't do much other than proxy through most QSPanel calls.
Bug: 168904199
Test: manual && atest SystemUITests
Change-Id: I1fccda95f38722bf0215b2f15f65cd70ec66283a
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/KeyguardRootViewController.java')
-rw-r--r-- | packages/SystemUI/src/com/android/keyguard/KeyguardRootViewController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardRootViewController.java b/packages/SystemUI/src/com/android/keyguard/KeyguardRootViewController.java index 5c125fcc95cb..4e375c2d1227 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardRootViewController.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardRootViewController.java @@ -19,7 +19,7 @@ package com.android.keyguard; import android.view.ViewGroup; import com.android.keyguard.dagger.KeyguardBouncerScope; -import com.android.keyguard.dagger.RootView; +import com.android.systemui.dagger.qualifiers.RootView; import com.android.systemui.statusbar.phone.KeyguardBouncer; import com.android.systemui.util.ViewController; |