summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorYing Zheng <yizheng@google.com>2018-08-30 09:57:01 -0700
committerYing Zheng <yizheng@google.com>2018-09-04 10:15:34 -0700
commitd067cd25ee8477ca21a838129e60f5e6df009556 (patch)
treeff9fbf82ca209893b3506458f6501c40bb540d3a /core/java/android
parentbb66334058d26ddd76ff5374332ca43e67190514 (diff)
MASTER - Add signal for last active user in global settings.
Bug: 112759705 Test: build Change-Id: Ib68b3c643f86ef1d4b441dc3e6d535cf5e7430ae
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/provider/Settings.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java
index 7df42ebe1de6..f7676a200731 100644
--- a/core/java/android/provider/Settings.java
+++ b/core/java/android/provider/Settings.java
@@ -13307,6 +13307,23 @@ public final class Settings {
* @hide
*/
public static final String BINDER_CALLS_STATS = "binder_calls_stats";
+
+ /**
+ * Default user id to boot into. They map to user ids, for example, 10, 11, 12.
+ *
+ * @hide
+ */
+ public static final String DEFAULT_USER_ID_TO_BOOT_INTO = "default_boot_into_user_id";
+
+ /**
+ * Persistent user id that is last logged in to.
+ *
+ * They map to user ids, for example, 10, 11, 12.
+ *
+ * @hide
+ */
+ public static final String LAST_ACTIVE_USER_ID = "last_active_persistent_user_id";
+
}
/**