summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2019-01-30 17:35:20 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2019-01-30 17:35:20 +0000
commit5bbb5b4d5798023794703676694fbfd636a0c0bb (patch)
treeab09d470834db2fc5e260f28ca8078908dced223 /core/java/android
parentb9dce652399db135232c3a4963929843fe89b535 (diff)
parente1bff3f02783cf4c19036f975900ccc08f9496c4 (diff)
Merge "Add native boot flag namespace for activity_manager"
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/provider/DeviceConfig.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/core/java/android/provider/DeviceConfig.java b/core/java/android/provider/DeviceConfig.java
index f8c355b4e5d6..30c0731870ef 100644
--- a/core/java/android/provider/DeviceConfig.java
+++ b/core/java/android/provider/DeviceConfig.java
@@ -160,6 +160,18 @@ public final class DeviceConfig {
}
/**
+ * Namespace for all activity manager related features that are used at the native level.
+ * These features are applied at reboot.
+ *
+ * @hide
+ */
+ @SystemApi
+ public interface ActivityManagerNativeBoot {
+ String NAMESPACE = "activity_manager_native_boot";
+ String OFFLOAD_QUEUE_ENABLED = "offload_queue_enabled";
+ }
+
+ /**
* Namespace for attention-based features provided by on-device machine intelligence.
*
* @hide