diff options
| author | 2021-03-22 18:22:48 +0000 | |
|---|---|---|
| committer | 2021-03-22 18:22:48 +0000 | |
| commit | f6561f6c82568ae4fa8f3741e3313e1126e36d45 (patch) | |
| tree | a7afc587a2a4db76a9ce92ecc481c38a83c809de | |
| parent | 000b1d743a5aacdb75db2bc0291c9e10e29b32f3 (diff) | |
| parent | 8d5fd36dd1087e49db5c38c2b2438279ea81ad49 (diff) | |
Merge "Add statsd flags to public namespaces" into sc-dev
| -rw-r--r-- | core/java/android/provider/DeviceConfig.java | 67 |
1 files changed, 34 insertions, 33 deletions
diff --git a/core/java/android/provider/DeviceConfig.java b/core/java/android/provider/DeviceConfig.java index e68f330a2129..7e404972d11a 100644 --- a/core/java/android/provider/DeviceConfig.java +++ b/core/java/android/provider/DeviceConfig.java @@ -358,6 +358,38 @@ public final class DeviceConfig { public static final String NAMESPACE_SETTINGS_STATS = "settings_stats"; /** + * Namespace for all statsd java features that can be applied immediately. + * + * @hide + */ + @SystemApi + public static final String NAMESPACE_STATSD_JAVA = "statsd_java"; + + /** + * Namespace for all statsd java features that are applied on boot. + * + * @hide + */ + @SystemApi + public static final String NAMESPACE_STATSD_JAVA_BOOT = "statsd_java_boot"; + + /** + * Namespace for all statsd native features that can be applied immediately. + * + * @hide + */ + @SystemApi + public static final String NAMESPACE_STATSD_NATIVE = "statsd_native"; + + /** + * Namespace for all statsd native features that are applied on boot. + * + * @hide + */ + @SystemApi + public static final String NAMESPACE_STATSD_NATIVE_BOOT = "statsd_native_boot"; + + /** * Namespace for storage-related features. * * @deprecated Replace storage namespace with storage_native_boot. @@ -456,7 +488,8 @@ public final class DeviceConfig { */ @NonNull private static final List<String> PUBLIC_NAMESPACES = - Arrays.asList(NAMESPACE_TEXTCLASSIFIER, NAMESPACE_RUNTIME); + Arrays.asList(NAMESPACE_TEXTCLASSIFIER, NAMESPACE_RUNTIME, NAMESPACE_STATSD_JAVA, + NAMESPACE_STATSD_JAVA_BOOT); /** * Privacy related properties definitions. * @@ -505,38 +538,6 @@ public final class DeviceConfig { "connectivity_thermal_power_manager"; /** - * Namespace for all statsd java features that can be applied immediately. - * - * @hide - */ - @SystemApi - public static final String NAMESPACE_STATSD_JAVA = "statsd_java"; - - /** - * Namespace for all statsd java features that are applied on boot. - * - * @hide - */ - @SystemApi - public static final String NAMESPACE_STATSD_JAVA_BOOT = "statsd_java_boot"; - - /** - * Namespace for all statsd native features that can be applied immediately. - * - * @hide - */ - @SystemApi - public static final String NAMESPACE_STATSD_NATIVE = "statsd_native"; - - /** - * Namespace for all statsd native features that are applied on boot. - * - * @hide - */ - @SystemApi - public static final String NAMESPACE_STATSD_NATIVE_BOOT = "statsd_native_boot"; - - /** * Namespace for configuration related features. * * @hide |