Whitelist -> Allowlist

Bug: 268662350
Test: Manually checked device allowlist
Change-Id: I8f264c4bcda7be12c3f2e5242bf689df66199e84
This commit is contained in:
Hawkwood Glazier
2023-02-13 22:38:51 +00:00
parent 9fe66836c4
commit cbf072c205
2 changed files with 3 additions and 3 deletions

View File

@@ -450,7 +450,7 @@
<integer name="watch_heap_limit">256000</integer>
<!-- SystemUI Plugins that can be loaded on user builds. -->
<string-array name="config_pluginWhitelist" translatable="false">
<string-array name="config_pluginAllowlist" translatable="false">
<item>com.android.systemui</item>
</string-array>
@@ -828,7 +828,7 @@
<string name="config_wallpaperPickerPackage" translatable="false">
com.android.wallpaper
</string>
<!-- Whether the floating rotation button should be on the left/right in the device's natural
orientation -->
<bool name="floating_rotation_button_position_left">true</bool>

View File

@@ -121,6 +121,6 @@ public abstract class PluginsModule {
@Provides
@Named(PLUGIN_PRIVILEGED)
static List<String> providesPrivilegedPlugins(Context context) {
return Arrays.asList(context.getResources().getStringArray(R.array.config_pluginWhitelist));
return Arrays.asList(context.getResources().getStringArray(R.array.config_pluginAllowlist));
}
}