summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-07 01:08:54 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-07 01:08:54 +0000
commit95e85155146a0cc8c4545409cfe4278ab4ba6c9d (patch)
tree66513997147aea522b5d4928b3fbe2bd88a01ae7
parent72f204c28925c740a29e8f29127352f1aa1aadd2 (diff)
parent4e800ab0595a44cb656a000a17eed6fe5726ec1b (diff)
downloadSystemUIGo-95e85155146a0cc8c4545409cfe4278ab4ba6c9d.tar.gz
Change-Id: I2a3957399e17d465488a4526ff943fadfb0a0f09
-rw-r--r--src/com/android/systemui/go/SystemUIGoModule.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/com/android/systemui/go/SystemUIGoModule.java b/src/com/android/systemui/go/SystemUIGoModule.java
index 4c0abcc..389a3de 100644
--- a/src/com/android/systemui/go/SystemUIGoModule.java
+++ b/src/com/android/systemui/go/SystemUIGoModule.java
@@ -27,6 +27,7 @@ import android.os.PowerManager;
import com.android.keyguard.KeyguardViewController;
import com.android.systemui.broadcast.BroadcastDispatcher;
import com.android.systemui.dagger.GlobalRootComponent;
+import com.android.systemui.dagger.ReferenceSystemUIModule;
import com.android.systemui.dagger.SysUISingleton;
import com.android.systemui.dagger.qualifiers.Background;
import com.android.systemui.dagger.qualifiers.Main;
@@ -38,7 +39,6 @@ import com.android.systemui.media.dagger.MediaModule;
import com.android.systemui.plugins.qs.QSFactory;
import com.android.systemui.plugins.statusbar.StatusBarStateController;
import com.android.systemui.power.EnhancedEstimates;
-import com.android.systemui.power.EnhancedEstimatesImpl;
import com.android.systemui.power.dagger.PowerModule;
import com.android.systemui.qs.dagger.QSModule;
import com.android.systemui.qs.tileimpl.QSFactoryImpl;
@@ -81,7 +81,7 @@ import dagger.Provides;
/**
* A dagger module for overriding the default implementations of injected System UI components on
- * Android Go. This is forked from {@link com.android.systemui.dagger.SystemUIDefaultModule}
+ * Android Go. This is forked from {@link ReferenceSystemUIModule}
*/
@Module(includes = {
MediaModule.class,
@@ -104,9 +104,6 @@ public abstract class SystemUIGoModule {
}
@Binds
- abstract EnhancedEstimates bindEnhancedEstimates(EnhancedEstimatesImpl enhancedEstimates);
-
- @Binds
abstract NotificationLockscreenUserManager bindNotificationLockscreenUserManager(
NotificationLockscreenUserManagerImpl notificationLockscreenUserManager);