diff options
| author | 2025-01-17 16:48:46 -0800 | |
|---|---|---|
| committer | 2025-01-17 16:48:46 -0800 | |
| commit | c96592e84ec708ff2d7d4976a7d86d41445e58e6 (patch) | |
| tree | bafda6e9239ea9a593dd7188ee4af8d5a196eef3 | |
| parent | c7d1fb3aac041b0b6ba3c311b087ef4e985e8e7d (diff) | |
| parent | 9d70160e626eaabd7b14bb4fcdc83db4a7779c5a (diff) | |
Merge "Replace deprecated CUJ constants" into main
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModel.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModel.kt b/packages/SystemUI/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModel.kt index 99e84729d9b1..541a07c47df2 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModel.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/CallChipViewModel.kt @@ -17,7 +17,7 @@ package com.android.systemui.statusbar.chips.call.ui.viewmodel import android.view.View -import com.android.internal.jank.InteractionJankMonitor +import com.android.internal.jank.Cuj import com.android.systemui.animation.ActivityTransitionAnimator import com.android.systemui.common.shared.model.ContentDescription import com.android.systemui.common.shared.model.Icon @@ -128,7 +128,7 @@ constructor( state.intent, ActivityTransitionAnimator.Controller.fromView( backgroundView, - InteractionJankMonitor.CUJ_STATUS_BAR_APP_LAUNCH_FROM_CALL_CHIP, + Cuj.CUJ_STATUS_BAR_APP_LAUNCH_FROM_CALL_CHIP, ), ) } @@ -145,7 +145,7 @@ constructor( StatusBarChipsModernization.assertInNewMode() val animationController = expandable.activityTransitionController( - InteractionJankMonitor.CUJ_STATUS_BAR_APP_LAUNCH_FROM_CALL_CHIP + Cuj.CUJ_STATUS_BAR_APP_LAUNCH_FROM_CALL_CHIP ) activityStarter.postStartActivityDismissingKeyguard( state.intent, |