@@ -67,6 +67,12 @@ class ThemeOverlayManager {
67
67
@ VisibleForTesting
68
68
static final String OVERLAY_CATEGORY_ICON_THEME_PICKER =
69
69
"android.theme.customization.icon_pack.themepicker" ;
70
+ @ VisibleForTesting
71
+ static final String OVERLAY_CATEGORY_ICON_SIGNAL =
72
+ "android.theme.customization.signal_icon" ;
73
+ @ VisibleForTesting
74
+ static final String OVERLAY_CATEGORY_ICON_WIFI =
75
+ "android.theme.customization.wifi_icon" ;
70
76
71
77
/*
72
78
* All theme customization categories used by the system, in order that they should be applied,
@@ -80,7 +86,9 @@ class ThemeOverlayManager {
80
86
OVERLAY_CATEGORY_ICON_ANDROID ,
81
87
OVERLAY_CATEGORY_ICON_SYSUI ,
82
88
OVERLAY_CATEGORY_ICON_SETTINGS ,
83
- OVERLAY_CATEGORY_ICON_THEME_PICKER );
89
+ OVERLAY_CATEGORY_ICON_THEME_PICKER ,
90
+ OVERLAY_CATEGORY_ICON_SIGNAL ,
91
+ OVERLAY_CATEGORY_ICON_WIFI );
84
92
85
93
/* Categories that need to applied to the current user as well as the system user. */
86
94
@ VisibleForTesting
@@ -125,6 +133,8 @@ class ThemeOverlayManager {
125
133
mCategoryToTargetPackage .put (OVERLAY_CATEGORY_ICON_SETTINGS , SETTINGS_PACKAGE );
126
134
mCategoryToTargetPackage .put (OVERLAY_CATEGORY_ICON_LAUNCHER , mLauncherPackage );
127
135
mCategoryToTargetPackage .put (OVERLAY_CATEGORY_ICON_THEME_PICKER , mThemePickerPackage );
136
+ mCategoryToTargetPackage .put (OVERLAY_CATEGORY_ICON_SIGNAL , SYSUI_PACKAGE );
137
+ mCategoryToTargetPackage .put (OVERLAY_CATEGORY_ICON_WIFI , SYSUI_PACKAGE );
128
138
}
129
139
130
140
/**
0 commit comments