Commit 2e879b87 authored by Henrique Nakashima's avatar Henrique Nakashima Committed by Commit Bot

Replace term "whitelist" with "allowlist" in chrome/browser/prefs

Bug: 1097249
Change-Id: Ifc815f8f94d485906b31b87ae06d39b0eea7eb81
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2537060Reviewed-by: default avatarRamin Halavati <rhalavati@chromium.org>
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Cr-Commit-Position: refs/heads/master@{#827894}
parent c9c55df8
...@@ -166,10 +166,10 @@ const char* const kPersistentPrefNames[] = { ...@@ -166,10 +166,10 @@ const char* const kPersistentPrefNames[] = {
namespace prefs { namespace prefs {
std::vector<const char*> GetIncognitoPersistentPrefsAllowlist() { std::vector<const char*> GetIncognitoPersistentPrefsAllowlist() {
std::vector<const char*> whitelist; std::vector<const char*> allowlist;
whitelist.insert(whitelist.end(), kPersistentPrefNames, allowlist.insert(allowlist.end(), kPersistentPrefNames,
kPersistentPrefNames + base::size(kPersistentPrefNames)); kPersistentPrefNames + base::size(kPersistentPrefNames));
return whitelist; return allowlist;
} }
} // namespace prefs } // namespace prefs
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment