Loading packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java +2 −2 Original line number Diff line number Diff line Loading @@ -23,8 +23,8 @@ import android.view.ViewRootImpl; import androidx.annotation.Nullable; import com.android.systemui.keyguard.KeyguardViewMediator; import com.android.systemui.shade.NotificationPanelViewController; import com.android.systemui.shade.ShadeExpansionStateManager; import com.android.systemui.shade.ShadeViewController; import com.android.systemui.statusbar.phone.BiometricUnlockController; import com.android.systemui.statusbar.phone.CentralSurfaces; import com.android.systemui.statusbar.phone.KeyguardBypassController; Loading Loading @@ -178,7 +178,7 @@ public interface KeyguardViewController { * Registers the CentralSurfaces to which this Keyguard View is mounted. */ void registerCentralSurfaces(CentralSurfaces centralSurfaces, NotificationPanelViewController notificationPanelViewController, ShadeViewController shadeViewController, @Nullable ShadeExpansionStateManager shadeExpansionStateManager, BiometricUnlockController biometricUnlockController, View notificationContainer, Loading packages/SystemUI/src/com/android/keyguard/dagger/KeyguardStatusBarViewComponent.java +3 −3 Original line number Diff line number Diff line Loading @@ -17,7 +17,7 @@ package com.android.keyguard.dagger; import com.android.keyguard.KeyguardStatusViewController; import com.android.systemui.shade.NotificationPanelViewController; import com.android.systemui.shade.ShadeViewStateProvider; import com.android.systemui.statusbar.phone.KeyguardStatusBarView; import com.android.systemui.statusbar.phone.KeyguardStatusBarViewController; Loading @@ -37,8 +37,8 @@ public interface KeyguardStatusBarViewComponent { interface Factory { KeyguardStatusBarViewComponent build( @BindsInstance KeyguardStatusBarView view, @BindsInstance NotificationPanelViewController.NotificationPanelViewStateProvider notificationPanelViewStateProvider); @BindsInstance ShadeViewStateProvider shadeViewStateProvider); } /** Builds a {@link KeyguardStatusViewController}. */ Loading packages/SystemUI/src/com/android/systemui/dreams/touch/ShadeTouchHandler.java +3 −3 Original line number Diff line number Diff line Loading @@ -23,7 +23,7 @@ import android.graphics.Region; import android.view.GestureDetector; import android.view.MotionEvent; import com.android.systemui.shade.NotificationPanelViewController; import com.android.systemui.shade.ShadeViewController; import com.android.systemui.statusbar.phone.CentralSurfaces; import java.util.Optional; Loading Loading @@ -54,8 +54,8 @@ public class ShadeTouchHandler implements DreamTouchHandler { } session.registerInputListener(ev -> { final NotificationPanelViewController viewController = mSurfaces.map(CentralSurfaces::getNotificationPanelViewController).orElse(null); final ShadeViewController viewController = mSurfaces.map(CentralSurfaces::getShadeViewController).orElse(null); if (viewController != null) { viewController.handleExternalTouch((MotionEvent) ev); Loading packages/SystemUI/src/com/android/systemui/dreams/touch/dagger/BouncerSwipeModule.java +8 −8 Original line number Diff line number Diff line Loading @@ -25,16 +25,16 @@ import com.android.systemui.R; import com.android.systemui.dagger.qualifiers.Main; import com.android.systemui.dreams.touch.BouncerSwipeTouchHandler; import com.android.systemui.dreams.touch.DreamTouchHandler; import com.android.systemui.shade.NotificationPanelViewController; import com.android.systemui.shade.ShadeViewController; import com.android.wm.shell.animation.FlingAnimationUtils; import javax.inject.Named; import javax.inject.Provider; import dagger.Module; import dagger.Provides; import dagger.multibindings.IntoSet; import javax.inject.Named; import javax.inject.Provider; /** * This module captures the components associated with {@link BouncerSwipeTouchHandler}. */ Loading Loading @@ -78,8 +78,8 @@ public class BouncerSwipeModule { return flingAnimationUtilsBuilderProvider.get() .reset() .setMaxLengthSeconds( NotificationPanelViewController.FLING_CLOSING_MAX_LENGTH_SECONDS) .setSpeedUpFactor(NotificationPanelViewController.FLING_SPEED_UP_FACTOR) ShadeViewController.FLING_CLOSING_MAX_LENGTH_SECONDS) .setSpeedUpFactor(ShadeViewController.FLING_SPEED_UP_FACTOR) .build(); } Loading @@ -92,8 +92,8 @@ public class BouncerSwipeModule { Provider<FlingAnimationUtils.Builder> flingAnimationUtilsBuilderProvider) { return flingAnimationUtilsBuilderProvider.get() .reset() .setMaxLengthSeconds(NotificationPanelViewController.FLING_MAX_LENGTH_SECONDS) .setSpeedUpFactor(NotificationPanelViewController.FLING_SPEED_UP_FACTOR) .setMaxLengthSeconds(ShadeViewController.FLING_MAX_LENGTH_SECONDS) .setSpeedUpFactor(ShadeViewController.FLING_SPEED_UP_FACTOR) .build(); } Loading packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +2 −2 Original line number Diff line number Diff line Loading @@ -134,9 +134,9 @@ import com.android.systemui.keyguard.dagger.KeyguardModule; import com.android.systemui.navigationbar.NavigationModeController; import com.android.systemui.plugins.statusbar.StatusBarStateController; import com.android.systemui.settings.UserTracker; import com.android.systemui.shade.NotificationPanelViewController; import com.android.systemui.shade.ShadeController; import com.android.systemui.shade.ShadeExpansionStateManager; import com.android.systemui.shade.ShadeViewController; import com.android.systemui.shared.system.QuickStepContract; import com.android.systemui.statusbar.CommandQueue; import com.android.systemui.statusbar.NotificationShadeDepthController; Loading Loading @@ -3098,7 +3098,7 @@ public class KeyguardViewMediator implements CoreStartable, Dumpable, * @return the View Controller for the Keyguard View this class is mediating. */ public KeyguardViewController registerCentralSurfaces(CentralSurfaces centralSurfaces, NotificationPanelViewController panelView, ShadeViewController panelView, @Nullable ShadeExpansionStateManager shadeExpansionStateManager, BiometricUnlockController biometricUnlockController, View notificationContainer, KeyguardBypassController bypassController) { Loading Loading
packages/SystemUI/src/com/android/keyguard/KeyguardViewController.java +2 −2 Original line number Diff line number Diff line Loading @@ -23,8 +23,8 @@ import android.view.ViewRootImpl; import androidx.annotation.Nullable; import com.android.systemui.keyguard.KeyguardViewMediator; import com.android.systemui.shade.NotificationPanelViewController; import com.android.systemui.shade.ShadeExpansionStateManager; import com.android.systemui.shade.ShadeViewController; import com.android.systemui.statusbar.phone.BiometricUnlockController; import com.android.systemui.statusbar.phone.CentralSurfaces; import com.android.systemui.statusbar.phone.KeyguardBypassController; Loading Loading @@ -178,7 +178,7 @@ public interface KeyguardViewController { * Registers the CentralSurfaces to which this Keyguard View is mounted. */ void registerCentralSurfaces(CentralSurfaces centralSurfaces, NotificationPanelViewController notificationPanelViewController, ShadeViewController shadeViewController, @Nullable ShadeExpansionStateManager shadeExpansionStateManager, BiometricUnlockController biometricUnlockController, View notificationContainer, Loading
packages/SystemUI/src/com/android/keyguard/dagger/KeyguardStatusBarViewComponent.java +3 −3 Original line number Diff line number Diff line Loading @@ -17,7 +17,7 @@ package com.android.keyguard.dagger; import com.android.keyguard.KeyguardStatusViewController; import com.android.systemui.shade.NotificationPanelViewController; import com.android.systemui.shade.ShadeViewStateProvider; import com.android.systemui.statusbar.phone.KeyguardStatusBarView; import com.android.systemui.statusbar.phone.KeyguardStatusBarViewController; Loading @@ -37,8 +37,8 @@ public interface KeyguardStatusBarViewComponent { interface Factory { KeyguardStatusBarViewComponent build( @BindsInstance KeyguardStatusBarView view, @BindsInstance NotificationPanelViewController.NotificationPanelViewStateProvider notificationPanelViewStateProvider); @BindsInstance ShadeViewStateProvider shadeViewStateProvider); } /** Builds a {@link KeyguardStatusViewController}. */ Loading
packages/SystemUI/src/com/android/systemui/dreams/touch/ShadeTouchHandler.java +3 −3 Original line number Diff line number Diff line Loading @@ -23,7 +23,7 @@ import android.graphics.Region; import android.view.GestureDetector; import android.view.MotionEvent; import com.android.systemui.shade.NotificationPanelViewController; import com.android.systemui.shade.ShadeViewController; import com.android.systemui.statusbar.phone.CentralSurfaces; import java.util.Optional; Loading Loading @@ -54,8 +54,8 @@ public class ShadeTouchHandler implements DreamTouchHandler { } session.registerInputListener(ev -> { final NotificationPanelViewController viewController = mSurfaces.map(CentralSurfaces::getNotificationPanelViewController).orElse(null); final ShadeViewController viewController = mSurfaces.map(CentralSurfaces::getShadeViewController).orElse(null); if (viewController != null) { viewController.handleExternalTouch((MotionEvent) ev); Loading
packages/SystemUI/src/com/android/systemui/dreams/touch/dagger/BouncerSwipeModule.java +8 −8 Original line number Diff line number Diff line Loading @@ -25,16 +25,16 @@ import com.android.systemui.R; import com.android.systemui.dagger.qualifiers.Main; import com.android.systemui.dreams.touch.BouncerSwipeTouchHandler; import com.android.systemui.dreams.touch.DreamTouchHandler; import com.android.systemui.shade.NotificationPanelViewController; import com.android.systemui.shade.ShadeViewController; import com.android.wm.shell.animation.FlingAnimationUtils; import javax.inject.Named; import javax.inject.Provider; import dagger.Module; import dagger.Provides; import dagger.multibindings.IntoSet; import javax.inject.Named; import javax.inject.Provider; /** * This module captures the components associated with {@link BouncerSwipeTouchHandler}. */ Loading Loading @@ -78,8 +78,8 @@ public class BouncerSwipeModule { return flingAnimationUtilsBuilderProvider.get() .reset() .setMaxLengthSeconds( NotificationPanelViewController.FLING_CLOSING_MAX_LENGTH_SECONDS) .setSpeedUpFactor(NotificationPanelViewController.FLING_SPEED_UP_FACTOR) ShadeViewController.FLING_CLOSING_MAX_LENGTH_SECONDS) .setSpeedUpFactor(ShadeViewController.FLING_SPEED_UP_FACTOR) .build(); } Loading @@ -92,8 +92,8 @@ public class BouncerSwipeModule { Provider<FlingAnimationUtils.Builder> flingAnimationUtilsBuilderProvider) { return flingAnimationUtilsBuilderProvider.get() .reset() .setMaxLengthSeconds(NotificationPanelViewController.FLING_MAX_LENGTH_SECONDS) .setSpeedUpFactor(NotificationPanelViewController.FLING_SPEED_UP_FACTOR) .setMaxLengthSeconds(ShadeViewController.FLING_MAX_LENGTH_SECONDS) .setSpeedUpFactor(ShadeViewController.FLING_SPEED_UP_FACTOR) .build(); } Loading
packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +2 −2 Original line number Diff line number Diff line Loading @@ -134,9 +134,9 @@ import com.android.systemui.keyguard.dagger.KeyguardModule; import com.android.systemui.navigationbar.NavigationModeController; import com.android.systemui.plugins.statusbar.StatusBarStateController; import com.android.systemui.settings.UserTracker; import com.android.systemui.shade.NotificationPanelViewController; import com.android.systemui.shade.ShadeController; import com.android.systemui.shade.ShadeExpansionStateManager; import com.android.systemui.shade.ShadeViewController; import com.android.systemui.shared.system.QuickStepContract; import com.android.systemui.statusbar.CommandQueue; import com.android.systemui.statusbar.NotificationShadeDepthController; Loading Loading @@ -3098,7 +3098,7 @@ public class KeyguardViewMediator implements CoreStartable, Dumpable, * @return the View Controller for the Keyguard View this class is mediating. */ public KeyguardViewController registerCentralSurfaces(CentralSurfaces centralSurfaces, NotificationPanelViewController panelView, ShadeViewController panelView, @Nullable ShadeExpansionStateManager shadeExpansionStateManager, BiometricUnlockController biometricUnlockController, View notificationContainer, KeyguardBypassController bypassController) { Loading