summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorVictor Hsieh <victorhsieh@google.com>2019-01-29 11:57:00 -0800
committerVictor Hsieh <victorhsieh@google.com>2019-01-29 17:19:52 -0800
commit51c440366ae18c8da8941a710bb931eef9f66e4d (patch)
tree88a9b59ff82b00e6c68837a456680dd833fa3c83 /core/java/android
parent88819f07e05c4f32ac2c2895b2d7f6e871605327 (diff)
Rename fsi_boot to dex_boot and the flag names
During the discussion in cl/229444950, we decide to rename the namespace. Test: make Bug: 120793002 Change-Id: I3ff2024912cc0df19b7c92a33f68476242158301
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/provider/DeviceConfig.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/core/java/android/provider/DeviceConfig.java b/core/java/android/provider/DeviceConfig.java
index 264f97568b50..a6f57b56aae1 100644
--- a/core/java/android/provider/DeviceConfig.java
+++ b/core/java/android/provider/DeviceConfig.java
@@ -208,16 +208,15 @@ public final class DeviceConfig {
}
/**
- * Namespace for Full Stack Integrity to run privileged apps only in JIT mode. The flag applies
- * at process start, so reboot is a way to bring the device to a clean state.
+ * Namespace for how dex runs. The feature may requires reboot to a clean state.
*
* @hide
*/
@SystemApi
- public interface FsiBoot {
- String NAMESPACE = "fsi_boot";
- String OOB_ENABLED = "oob_enabled";
- String OOB_WHITELIST = "oob_whitelist";
+ public interface DexBoot {
+ String NAMESPACE = "dex_boot";
+ String PRIV_APPS_OOB_ENABLED = "priv_apps_oob_enabled";
+ String PRIV_APPS_OOB_WHITELIST = "priv_apps_oob_whitelist";
}
/**