Merge "Whitelist -> Allowlist" into tm-qpr-dev

This commit is contained in:
Hawkwood Glazier
2023-02-15 17:21:15 +00:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 3 deletions

View File

@@ -450,7 +450,7 @@
<integer name="watch_heap_limit">256000</integer> <integer name="watch_heap_limit">256000</integer>
<!-- SystemUI Plugins that can be loaded on user builds. --> <!-- 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> <item>com.android.systemui</item>
</string-array> </string-array>

View File

@@ -121,6 +121,6 @@ public abstract class PluginsModule {
@Provides @Provides
@Named(PLUGIN_PRIVILEGED) @Named(PLUGIN_PRIVILEGED)
static List<String> providesPrivilegedPlugins(Context context) { 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));
} }
} }