summaryrefslogtreecommitdiffstats
path: root/quickstep/recents_ui_overrides
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2019-06-12 07:41:14 -0700
committerSunny Goyal <sunnygoyal@google.com>2019-06-12 07:41:50 -0700
commita327e6a3d12d689abd5a2fa014fdfa60249eb4c7 (patch)
treea51e6d869adde0f90749867d583b376d36192783 /quickstep/recents_ui_overrides
parentc1fa3abd2e441d4acfdf6ca8d3ba628776f2ba6d (diff)
downloadandroid_packages_apps_Trebuchet-a327e6a3d12d689abd5a2fa014fdfa60249eb4c7.tar.gz
android_packages_apps_Trebuchet-a327e6a3d12d689abd5a2fa014fdfa60249eb4c7.tar.bz2
android_packages_apps_Trebuchet-a327e6a3d12d689abd5a2fa014fdfa60249eb4c7.zip
Initializing ActivityManagerWrapper before device unlock
Bug: 134406364 Change-Id: I30339c3790efeaa60db7ea3cbae76d97474c16cc
Diffstat (limited to 'quickstep/recents_ui_overrides')
-rw-r--r--quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java b/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java
index 30178a685..a952db94e 100644
--- a/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java
+++ b/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java
@@ -278,6 +278,7 @@ public class TouchInteractionService extends Service implements
// Everything else should be initialized in initWhenUserUnlocked() below.
mKM = getSystemService(KeyguardManager.class);
mMainChoreographer = Choreographer.getInstance();
+ mAM = ActivityManagerWrapper.getInstance();
if (UserManagerCompat.getInstance(this).isUserUnlocked(Process.myUserHandle())) {
initWhenUserUnlocked();
@@ -404,7 +405,6 @@ public class TouchInteractionService extends Service implements
}
private void initWhenUserUnlocked() {
- mAM = ActivityManagerWrapper.getInstance();
mRecentsModel = RecentsModel.INSTANCE.get(this);
mOverviewComponentObserver = new OverviewComponentObserver(this);