From 1ef209d736679f29d8f4e471548a63d25dd3c8df Mon Sep 17 00:00:00 2001 From: Caitlin Shkuratov Date: Tue, 10 Jan 2023 22:12:55 +0000 Subject: [SB Refactor] Enable the new pipeline backend for teamfood. The icons will still be derived from the old pipeline, but this will turn on the new pipeline in the background to help us pre-emptively catch any crashes. Bug: 238425913 Test: manual: verified flags on by default Change-Id: I52c850a708e0b11cb4c0141dfd267c7bc6c14cc2 --- packages/SystemUI/src/com/android/systemui/flags/Flags.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt index 7c4fa6c6d27e..79fcdc741001 100644 --- a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt +++ b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt @@ -247,10 +247,11 @@ object Flags { // TODO(b/256614751): Tracking Bug val NEW_STATUS_BAR_MOBILE_ICONS_BACKEND = - unreleasedFlag(608, "new_status_bar_mobile_icons_backend") + unreleasedFlag(608, "new_status_bar_mobile_icons_backend", teamfood = true) // TODO(b/256613548): Tracking Bug - val NEW_STATUS_BAR_WIFI_ICON_BACKEND = unreleasedFlag(609, "new_status_bar_wifi_icon_backend") + val NEW_STATUS_BAR_WIFI_ICON_BACKEND = + unreleasedFlag(609, "new_status_bar_wifi_icon_backend", teamfood = true) // TODO(b/256623670): Tracking Bug @JvmField -- cgit v1.2.3-59-g8ed1b