Commit fda8947f authored by Yusuke Sato's avatar Yusuke Sato Committed by Commit Bot

arc: Remove oppressive language from c/b/c/arc/

BUG=None
TEST=try

Change-Id: I426a0e3e61e30c331bc756bb7dc5646c4d65f4bd
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2315089Reviewed-by: default avatarYury Khmel <khmel@chromium.org>
Commit-Queue: Yury Khmel <khmel@chromium.org>
Commit-Queue: Yusuke Sato <yusukes@chromium.org>
Auto-Submit: Yusuke Sato <yusukes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#791365}
parent 97254d4f
...@@ -79,7 +79,7 @@ class ArcCertStoreBridge ...@@ -79,7 +79,7 @@ class ArcCertStoreBridge
content::BrowserContext* const context_; content::BrowserContext* const context_;
ArcBridgeService* const arc_bridge_service_; // Owned by ArcServiceManager. ArcBridgeService* const arc_bridge_service_; // Owned by ArcServiceManager.
policy::PolicyService* policy_service_ = nullptr; policy::PolicyService* policy_service_ = nullptr;
// Set to true if at least one ARC app is whitelisted by KeyPermissions // Set to true if at least one ARC app is allowlisted by KeyPermissions
// policy. // policy.
bool channel_enabled_ = false; bool channel_enabled_ = false;
......
...@@ -25,7 +25,7 @@ struct DocumentsProviderSpec { ...@@ -25,7 +25,7 @@ struct DocumentsProviderSpec {
}; };
// List of documents providers for media views. // List of documents providers for media views.
constexpr DocumentsProviderSpec kDocumentsProviderWhitelist[] = { constexpr DocumentsProviderSpec kDocumentsProviderAllowlist[] = {
{"com.android.providers.media.documents", "images_root", "images_root", {"com.android.providers.media.documents", "images_root", "images_root",
true}, true},
{"com.android.providers.media.documents", "videos_root", "videos_root", {"com.android.providers.media.documents", "videos_root", "videos_root",
...@@ -54,7 +54,7 @@ ArcDocumentsProviderRootMap::ArcDocumentsProviderRootMap(Profile* profile) ...@@ -54,7 +54,7 @@ ArcDocumentsProviderRootMap::ArcDocumentsProviderRootMap(Profile* profile)
// in ArcDocumentsProviderRootMapFactory. // in ArcDocumentsProviderRootMapFactory.
DCHECK(runner_); DCHECK(runner_);
for (const auto& spec : kDocumentsProviderWhitelist) { for (const auto& spec : kDocumentsProviderAllowlist) {
RegisterRoot(spec.authority, spec.root_document_id, spec.root_id, RegisterRoot(spec.authority, spec.root_document_id, spec.root_id,
spec.read_only, {}); spec.read_only, {});
} }
......
...@@ -37,7 +37,7 @@ enum class EcryptfsMigrationAction : int32_t { ...@@ -37,7 +37,7 @@ enum class EcryptfsMigrationAction : int32_t {
// only). // only).
kAskUser = 3, kAskUser = 3,
// Minimal migration - similar to kWipe, but runs migration code with a small // Minimal migration - similar to kWipe, but runs migration code with a small
// whitelist of files to preserve authentication data. // allowlist of files to preserve authentication data.
kMinimalMigrate = 4, kMinimalMigrate = 4,
// No longer supported. // No longer supported.
kAskForEcryptfsArcUsersNoLongerSupported = 5, kAskForEcryptfsArcUsersNoLongerSupported = 5,
......
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