Merge "Don't allow user to dream when not unlocked." into tm-qpr-dev am: 4922540a19
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/20749330 Change-Id: Id32b6ab07ded2093aad16716e2bd79dbe5ef4602 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -56,6 +56,7 @@ import android.os.ShellCallback;
|
|||||||
import android.os.SystemClock;
|
import android.os.SystemClock;
|
||||||
import android.os.SystemProperties;
|
import android.os.SystemProperties;
|
||||||
import android.os.UserHandle;
|
import android.os.UserHandle;
|
||||||
|
import android.os.UserManager;
|
||||||
import android.provider.Settings;
|
import android.provider.Settings;
|
||||||
import android.service.dreams.DreamManagerInternal;
|
import android.service.dreams.DreamManagerInternal;
|
||||||
import android.service.dreams.DreamService;
|
import android.service.dreams.DreamService;
|
||||||
@@ -113,6 +114,7 @@ public final class DreamManagerService extends SystemService {
|
|||||||
private final PowerManagerInternal mPowerManagerInternal;
|
private final PowerManagerInternal mPowerManagerInternal;
|
||||||
private final PowerManager.WakeLock mDozeWakeLock;
|
private final PowerManager.WakeLock mDozeWakeLock;
|
||||||
private final ActivityTaskManagerInternal mAtmInternal;
|
private final ActivityTaskManagerInternal mAtmInternal;
|
||||||
|
private final UserManager mUserManager;
|
||||||
private final UiEventLogger mUiEventLogger;
|
private final UiEventLogger mUiEventLogger;
|
||||||
private final DreamUiEventLogger mDreamUiEventLogger;
|
private final DreamUiEventLogger mDreamUiEventLogger;
|
||||||
private final ComponentName mAmbientDisplayComponent;
|
private final ComponentName mAmbientDisplayComponent;
|
||||||
@@ -212,6 +214,7 @@ public final class DreamManagerService extends SystemService {
|
|||||||
mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
|
mPowerManager = (PowerManager)context.getSystemService(Context.POWER_SERVICE);
|
||||||
mPowerManagerInternal = getLocalService(PowerManagerInternal.class);
|
mPowerManagerInternal = getLocalService(PowerManagerInternal.class);
|
||||||
mAtmInternal = getLocalService(ActivityTaskManagerInternal.class);
|
mAtmInternal = getLocalService(ActivityTaskManagerInternal.class);
|
||||||
|
mUserManager = context.getSystemService(UserManager.class);
|
||||||
mDozeWakeLock = mPowerManager.newWakeLock(PowerManager.DOZE_WAKE_LOCK, DOZE_WAKE_LOCK_TAG);
|
mDozeWakeLock = mPowerManager.newWakeLock(PowerManager.DOZE_WAKE_LOCK, DOZE_WAKE_LOCK_TAG);
|
||||||
mDozeConfig = new AmbientDisplayConfiguration(mContext);
|
mDozeConfig = new AmbientDisplayConfiguration(mContext);
|
||||||
mUiEventLogger = new UiEventLoggerImpl();
|
mUiEventLogger = new UiEventLoggerImpl();
|
||||||
@@ -383,6 +386,10 @@ public final class DreamManagerService extends SystemService {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!mUserManager.isUserUnlocked()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if ((mWhenToDream & DREAM_ON_CHARGE) == DREAM_ON_CHARGE) {
|
if ((mWhenToDream & DREAM_ON_CHARGE) == DREAM_ON_CHARGE) {
|
||||||
return mIsCharging;
|
return mIsCharging;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user