Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f86ba9d authored by Chris Poultney's avatar Chris Poultney
Browse files

Add helper class for extended effects

Bug: 422434043
Flag: EXEMPT refactor
Test: manually verified that setting extended and regular wp works
Change-Id: I69ac6a62450e28f499d646650e7840da2f96284a
parent 99ecc535
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -42,8 +42,10 @@ import com.android.wallpaper.customization.ui.binder.ThemePickerToolbarBinder
import com.android.wallpaper.customization.ui.util.ThemePickerCustomizationOptionUtil
import com.android.wallpaper.effects.DefaultEffectsController
import com.android.wallpaper.effects.EffectsController
import com.android.wallpaper.module.DefaultExtendedEffectsHelper
import com.android.wallpaper.module.DefaultPartnerProvider
import com.android.wallpaper.module.DefaultRecentWallpaperManager
import com.android.wallpaper.module.ExtendedEffectsHelper
import com.android.wallpaper.module.PartnerProvider
import com.android.wallpaper.module.RecentWallpaperManager
import com.android.wallpaper.module.WallpaperPreferences
@@ -163,6 +165,12 @@ abstract class ThemePickerAppModule {
    @Singleton
    abstract fun bindEffectsController(impl: DefaultEffectsController): EffectsController

    @Binds
    @Singleton
    abstract fun bindExtendedEffectsHelper(
        impl: DefaultExtendedEffectsHelper
    ): ExtendedEffectsHelper

    @Binds
    @Singleton
    abstract fun bindGoogleCategoryInteractor(impl: CategoryInteractorImpl): CategoryInteractor