1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_ASH_COMPONENTS_SETTINGS_CROS_SETTINGS_NAMES_H_
#define CHROMEOS_ASH_COMPONENTS_SETTINGS_CROS_SETTINGS_NAMES_H_
namespace ash {
inline constexpr char kCrosSettingsPrefix[] = "cros.";
// All cros.accounts.* settings are stored in SignedSettings.
inline constexpr char kAccountsPrefAllowGuest[] = "cros.accounts.allowBWSI";
inline constexpr char kAccountsPrefAllowNewUser[] = "cros.accounts.allowGuest";
inline constexpr char kAccountsPrefShowUserNamesOnSignIn[] =
"cros.accounts.showUserNamesOnSignIn";
inline constexpr char kAccountsPrefUsers[] = "cros.accounts.users";
// Only `ChromeUserManagerImpl` is allowed to directly use this setting. All
// other clients have to use `UserManager::IsEphemeralAccountId()` function to
// get ephemeral mode for account ID. Such rule is needed because there are
// new policies(e.g.kiosk ephemeral mode) that overrides behaviour of
// the current setting for some accounts.
inline constexpr char kAccountsPrefEphemeralUsersEnabled[] =
"cros.accounts.ephemeralUsersEnabled";
inline constexpr char kAccountsPrefDeviceLocalAccounts[] =
"cros.accounts.deviceLocalAccounts";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyId[] = "id";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyType[] = "type";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyKioskAppId[] =
"kiosk_app_id";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyKioskAppUpdateURL[] =
"kiosk_app_update_url";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyIwaKioskBundleId[] =
"iwa_kiosk_web_bundle_id";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyIwaKioskUpdateUrl[] =
"iwa_kiosk_update_manifest_url";
inline constexpr char
kAccountsPrefDeviceLocalAccountsKeyIwaKioskUpdateChannel[] =
"iwa_kiosk_update_channel";
inline constexpr char
kAccountsPrefDeviceLocalAccountsKeyIwaKioskPinnedVersion[] =
"iwa_kiosk_pinned_version";
inline constexpr char
kAccountsPrefDeviceLocalAccountsKeyIwaKioskAllowDowngrades[] =
"iwa_kiosk_allow_downgrades";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyArcvmKioskPackage[] =
"arcvm_kiosk_package";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyArcvmKioskClass[] =
"arcvm_kiosk_class";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyArcvmKioskAction[] =
"arcvm_kiosk_action";
inline constexpr char
kAccountsPrefDeviceLocalAccountsKeyArcvmKioskDisplayName[] =
"arcvm_kiosk_display_name";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyWebKioskUrl[] =
"web_kiosk_url";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyWebKioskTitle[] =
"web_kiosk_title";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyWebKioskIconUrl[] =
"web_kiosk_icon_url";
inline constexpr char kAccountsPrefDeviceLocalAccountsKeyEphemeralMode[] =
"ephemeral_mode";
inline constexpr char kAccountsPrefDeviceLocalAccountAutoLoginId[] =
"cros.accounts.deviceLocalAccountAutoLoginId";
inline constexpr char kAccountsPrefDeviceLocalAccountAutoLoginDelay[] =
"cros.accounts.deviceLocalAccountAutoLoginDelay";
inline constexpr char kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled[] =
"cros.accounts.deviceLocalAccountAutoLoginBailoutEnabled";
inline constexpr char
kAccountsPrefDeviceLocalAccountPromptForNetworkWhenOffline[] =
"cros.accounts.deviceLocalAccountPromptForNetworkWhenOffline";
inline constexpr char kAccountsPrefTransferSAMLCookies[] =
"cros.accounts.transferSAMLCookies";
// A string pref that specifies a domain name for the autocomplete option during
// user sign-in flow.
inline constexpr char kAccountsPrefLoginScreenDomainAutoComplete[] =
"cros.accounts.login_screen_domain_auto_complete";
// A boolean pref indicating whether all Family Link accounts are allowed on the
// device additionally to the accounts listed in |kAccountsPrefUsers| pref.
inline constexpr char kAccountsPrefFamilyLinkAccountsAllowed[] =
"cros.accounts.family_link_allowed";
// All cros.signed.* settings are stored in SignedSettings.
inline constexpr char kSignedDataRoamingEnabled[] =
"cros.signed.data_roaming_enabled";
// True if auto-update was disabled by the system administrator.
inline constexpr char kUpdateDisabled[] = "cros.system.updateDisabled";
// True if a target version prefix is set by the system administrator.
inline constexpr char kTargetVersionPrefix[] =
"cros.system.targetVersionPrefix";
// A list of strings which specifies allowed connection types for
// update.
inline constexpr char kAllowedConnectionTypesForUpdate[] =
"cros.system.allowedConnectionTypesForUpdate";
// The first constant refers to the user setting editable in the UI. The second
// refers to the timezone policy. This separation is necessary to allow the user
// to temporarily change the timezone for the current session and reset it to
// the policy's value on logout.
inline constexpr char kSystemTimezone[] = "cros.system.timezone";
inline constexpr char kSystemTimezonePolicy[] = "cros.system.timezone_policy";
// Value of kUse24HourClock user preference of device' owner.
// ChromeOS device uses this setting on login screen.
inline constexpr char kSystemUse24HourClock[] = "cros.system.use_24hour_clock";
inline constexpr char kDeviceOwner[] = "cros.device.owner";
inline constexpr char kStatsReportingPref[] = "cros.metrics.reportingEnabled";
inline constexpr char kReleaseChannel[] = "cros.system.releaseChannel";
inline constexpr char kReleaseChannelDelegated[] =
"cros.system.releaseChannelDelegated";
inline constexpr char kReleaseLtsTag[] = "cros.system.releaseLtsTag";
inline constexpr char kDeviceChannelDowngradeBehavior[] =
"cros.system.channelDowngradeBehavior";
// A boolean pref that allows a device owner to opt in eligible devices to
// Extended Automatic Updates.
inline constexpr char kDeviceExtendedAutoUpdateEnabled[] =
"cros.system.device_extended_auto_update_enabled";
// This setting is used to enforce usage of system audio echo cancellation.
inline constexpr char kDeviceSystemAecEnabled[] =
"cros.audio.device_system_aec_enabled";
// A boolean pref that indicates whether OS & firmware version info should be
// reported along with device policy requests.
inline constexpr char kReportDeviceVersionInfo[] =
"cros.device_status.report_version_info";
// A boolean pref that indicates whether device activity times should be
// recorded and reported along with device policy requests.
inline constexpr char kReportDeviceActivityTimes[] =
"cros.device_status.report_activity_times";
// A boolean pref that indicates whether device sound volume should be recorded
// and reported along with device policy requests.
inline constexpr char kReportDeviceAudioStatus[] =
"cros.device_status.report_audio_status";
// A boolean pref that determines whether the board status should be
// included in status reports to the device management server.
inline constexpr char kReportDeviceBoardStatus[] =
"cros.device_status.report_board_status";
// A boolean pref that indicates whether the state of the dev mode switch at
// boot should be reported along with device policy requests.
inline constexpr char kReportDeviceBootMode[] =
"cros.device_status.report_boot_mode";
// A boolean pref that determines whether the device CPU information should be
// included in status reports to the device management server.
inline constexpr char kReportDeviceCpuInfo[] =
"cros.device_status.report_cpu_info";
// A boolean pref that determines whether the device timezone information should
// be included in status reports to the device management server.
inline constexpr char kReportDeviceTimezoneInfo[] =
"cros.device_status.report_timezone_info";
// A boolean pref that determines whether the device memory information should
// be included in status reports to the device management server.
inline constexpr char kReportDeviceMemoryInfo[] =
"cros.device_status.report_memory_info";
// A boolean pref that determines whether the device backlight information
// should be included in status reports to the device management server.
inline constexpr char kReportDeviceBacklightInfo[] =
"cros.device_status.report_backlight_info";
// A boolean pref that indicates whether the current location should be reported
// along with device policy requests.
inline constexpr char kReportDeviceLocation[] =
"cros.device_status.report_location";
// Determines whether the device reports static network configuration info such
// as MAC Address, MEID, and MEI in device status reports to the device
// management server.
inline constexpr char kReportDeviceNetworkConfiguration[] =
"cros.device_status.report_network_configuration";
// Determines whether the device reports dynamic network information such
// connection state, signal strength, and IP Address in device status reports
// and to management server.
inline constexpr char kReportDeviceNetworkStatus[] =
"cros.device_status.report_network_status";
// A boolean pref that determines whether the device peripherals should be
// included in reports to the telemetry API.
inline constexpr char kReportDevicePeripherals[] =
"cros.device_status.report_peripherals";
// A boolean pref that determines whether the device power status should be
// included in status reports to the device management server.
inline constexpr char kReportDevicePowerStatus[] =
"cros.device_status.report_power_status";
// A boolean pref that determines whether the storage status should be
// included in status reports to the device management server.
inline constexpr char kReportDeviceStorageStatus[] =
"cros.device_status.report_storage_status";
// A boolean pref that determines whether the security status should be
// included in status reports to the device management server.
inline constexpr char kReportDeviceSecurityStatus[] =
"cros.device_status.report_security_status";
// Determines whether the device reports recently logged in users in device
// status reports to the device management server.
inline constexpr char kReportDeviceUsers[] = "cros.device_status.report_users";
// Determines whether the device reports kiosk session status (app IDs,
// versions, etc) in device status reports to the device management server.
inline constexpr char kReportDeviceSessionStatus[] =
"cros.device_status.report_session_status";
// Determines whether the device reports display and graphics statuses to the
// device_management server.
inline constexpr char kReportDeviceGraphicsStatus[] =
"cros.device_status.report_graphics_status";
// Determines whether the device reports crash report information to the device
// management server.
inline constexpr char kReportDeviceCrashReportInfo[] =
"cros.device_status.report_crash_report_info";
// Determines whether the device reports os update status (update status,
// new platform version and new required platform version of the auto
// launched kiosk app).
inline constexpr char kReportOsUpdateStatus[] =
"cros.device_status.report_os_update_status";
// Determines whether the device reports the current running kiosk app (
// its app ID, version and required platform version).
inline constexpr char kReportRunningKioskApp[] =
"cros.device_status.report_running_kiosk_app";
// How frequently device status reports are uploaded, in milliseconds.
inline constexpr char kReportUploadFrequency[] =
"cros.device_status.report_upload_frequency";
// A boolean pref that indicates whether user app information and activity times
// should be recorded and reported along with device policy requests.
inline constexpr char kReportDeviceAppInfo[] =
"cros.device_status.report_device_app_info";
// A boolean pref that determines whether the device Bluetooth information
// should be included in status reports to the device management server.
inline constexpr char kReportDeviceBluetoothInfo[] =
"cros.device_status.report_device_bluetooth_info";
// A boolean pref that determines whether the device fan information should be
// included in status reports to the device management server.
inline constexpr char kReportDeviceFanInfo[] =
"cros.device_status.report_device_fan_info";
// A boolean pref that determines whether the device's VPD information should be
// included in status reports to the device management server.
inline constexpr char kReportDeviceVpdInfo[] =
"cros.device_status.report_device_vpd_info";
// A boolean pref that determines whether the device's system information should
// be included in status reports to the device management server.
inline constexpr char kReportDeviceSystemInfo[] =
"cros.device_status.report_device_system_info";
// A boolean pref that determines whether the user's print job history is
// reported.
inline constexpr char kReportDevicePrintJobs[] =
"cros.device_status.report_print_jobs";
// A boolean pref that determines whether the login/logout events are reported.
inline constexpr char kReportDeviceLoginLogout[] =
"cros.reporting.report_login_logout";
// Determines whether CRD session events are reported.
inline constexpr char kReportCRDSessions[] =
"cros.reporting.report_crd_sessions";
// A boolean pref that determines whether the device runtime counters should be
// reported.
inline constexpr char kDeviceReportRuntimeCounters[] =
"cros.reporting.report_runtime_counters";
// How frequently the runtime counters telemetry is collected.
inline constexpr char kDeviceReportRuntimeCountersCheckingRateMs[] =
"cros.telemetry_reporting.device_report_runtime_counters_checking_rate_ms";
// How frequently the networks health telemetry is collected.
inline constexpr char kReportDeviceNetworkTelemetryCollectionRateMs[] =
"cros.telemetry_reporting.report_network_telemetry_collection_rate_ms";
// How frequently the networks data are checked for events.
inline constexpr char kReportDeviceNetworkTelemetryEventCheckingRateMs[] =
"cros.telemetry_reporting.report_network_telemetry_event_checking_rate_ms";
// How frequently the audio data are checked for events.
inline constexpr char kReportDeviceAudioStatusCheckingRateMs[] =
"cros.telemetry_reporting.report_device_audio_status_checking_rate_ms";
// How frequently the audio data are checked for events.
inline constexpr char kReportDeviceSignalStrengthEventDrivenTelemetry[] =
"cros.telemetry_reporting.report_signal_strength_event_driven_telemetry";
// Determines whether the network events are reported.
inline constexpr char kDeviceReportNetworkEvents[] =
"cros.reporting.report_network_events";
// Determines whether device activity state heartbeat should be reported.
inline constexpr char kDeviceActivityHeartbeatEnabled[] =
"cros.reporting.device_activity_heartbeat_enabled";
// Determines the device activity heartbeat collection rate (in milliseconds).
inline constexpr char kDeviceActivityHeartbeatCollectionRateMs[] =
"cros.reporting.device_activity_heartbeat_collection_rate_ms";
// Determines whether heartbeats should be sent to the policy service via
// the GCM channel.
inline constexpr char kHeartbeatEnabled[] =
"cros.device_status.heartbeat_enabled";
// How frequently heartbeats are sent up, in milliseconds.
inline constexpr char kHeartbeatFrequency[] =
"cros.device_status.heartbeat_frequency";
// Determines whether system logs should be sent to the management server.
inline constexpr char kSystemLogUploadEnabled[] =
"cros.device_status.system_log_upload_enabled";
// This policy should not appear in the protobuf ever but is used internally to
// signal that we are running in a "safe-mode" for policy recovery.
inline constexpr char kPolicyMissingMitigationMode[] =
"cros.internal.policy_mitigation_mode";
// A boolean pref that indicates whether users are allowed to redeem offers
// through Chrome OS Registration.
inline constexpr char kAllowRedeemChromeOsRegistrationOffers[] =
"cros.echo.allow_redeem_chrome_os_registration_offers";
// A list pref storing the feature flags (in the chrome://flags sense) that
// should to be applied at the login screen.
inline constexpr char kFeatureFlags[] = "cros.feature_flags";
// A string pref for the restrict parameter to be appended to the Variations URL
// when pinging the Variations server.
inline constexpr char kVariationsRestrictParameter[] =
"cros.variations_restrict_parameter";
// A boolean pref that indicates whether attestation for content protection is
// enabled for the device.
inline constexpr char kAttestationForContentProtectionEnabled[] =
"cros.device.attestation_for_content_protection_enabled";
// The service account identity for device-level service accounts on
// enterprise-enrolled devices.
inline constexpr char kServiceAccountIdentity[] =
"cros.service_account_identity";
// A boolean pref that indicates whether the device has been disabled by its
// owner. If so, the device will show a warning screen and will not allow any
// sessions to be started.
inline constexpr char kDeviceDisabled[] = "cros.device_disabled";
// A string pref containing the message that should be shown to the user when
// the device is disabled.
inline constexpr char kDeviceDisabledMessage[] = "cros.disabled_state.message";
// A boolean pref that indicates whether the device automatically reboots when
// the user initiates a shutdown via an UI element. If set to true, all
// shutdown buttons in the UI will be replaced by reboot buttons.
inline constexpr char kRebootOnShutdown[] = "cros.device.reboot_on_shutdown";
// An integer pref that specifies the limit of the device's extension cache
// size in bytes.
inline constexpr char kExtensionCacheSize[] =
"cros.device.extension_cache_size";
// A dictionary pref that sets the display resolution.
// Pref format:
// {
// "external_width": int,
// "external_height": int,
// "external_use_native": bool,
// "external_scale_percentage": int,
// "internal_scale_percentage": int,
// "recommended": bool
// }
inline constexpr char kDeviceDisplayResolution[] =
"cros.device_display_resolution";
inline constexpr char kDeviceDisplayResolutionKeyExternalWidth[] =
"external_width";
inline constexpr char kDeviceDisplayResolutionKeyExternalHeight[] =
"external_height";
inline constexpr char kDeviceDisplayResolutionKeyExternalScale[] =
"external_scale_percentage";
inline constexpr char kDeviceDisplayResolutionKeyExternalUseNative[] =
"external_use_native";
inline constexpr char kDeviceDisplayResolutionKeyInternalScale[] =
"internal_scale_percentage";
inline constexpr char kDeviceDisplayResolutionKeyRecommended[] = "recommended";
// An integer pref that sets the display rotation at startup to a certain
// value, overriding the user value:
// 0 = 0 degrees rotation
// 1 = 90 degrees clockwise rotation
// 2 = 180 degrees rotation
// 3 = 270 degrees clockwise rotation
inline constexpr char kDisplayRotationDefault[] =
"cros.display_rotation_default";
// A boolean pref that controls Chrome App Kiosk update behavior:
// false = legacy, CRX files are updated in the cache on startup using update
// URL from the policy, and from time to time during kiosk session the extension
// is updated using update URL from the extension manifest without populating
// the cache,
// true = CRX files are updated in the cache from time to time using update URL
// from the policy, no additional updates are made.
inline constexpr char kKioskCRXManifestUpdateURLIgnored[] =
"cros.kiosk_crx_manifest_update_url_ignored";
// An integer pref that sets the behavior of the login authentication flow.
// 0 = authentication using the default GAIA flow.
// 1 = authentication using an interstitial screen that offers the user to go
// ahead via the SAML IdP of the device's enrollment domain, or go back to the
// normal GAIA login flow.
inline constexpr char kLoginAuthenticationBehavior[] =
"cros.device.login_authentication_behavior";
// A boolean pref that indicates whether bluetooth should be allowed on the
// device.
inline constexpr char kAllowBluetooth[] = "cros.device.allow_bluetooth";
// A boolean pref that indicates whether WiFi should be allowed on the
// device.
inline constexpr char kDeviceWiFiAllowed[] = "cros.device.wifi_allowed";
// A boolean pref to enable any pings or requests to the Quirks Server.
inline constexpr char kDeviceQuirksDownloadEnabled[] =
"cros.device.quirks_download_enabled";
// A list pref storing the security origins allowed to access the webcam
// during SAML logins.
inline constexpr char kLoginVideoCaptureAllowedUrls[] =
"cros.device.login_video_capture_allowed_urls";
// A list pref specifying the locales allowed on the login screen. Currently
// only the first value is used, as the single locale allowed on the login
// screen.
inline constexpr char kDeviceLoginScreenLocales[] =
"cros.device_login_screen_locales";
// A list pref containing the input method IDs allowed on the login screen.
inline constexpr char kDeviceLoginScreenInputMethods[] =
"cros.device_login_screen_input_methods";
// A boolean pref that indicates whether the system information is forcedly
// shown (or hidden) on the login screen.
inline constexpr char kDeviceLoginScreenSystemInfoEnforced[] =
"cros.device_login_screen_system_info_enforced";
// A boolean pref that indicates whether to show numeric keyboard for entering
// password or not.
inline constexpr char kDeviceShowNumericKeyboardForPassword[] =
"cros.device_show_numeric_keyboard_for_password";
// A boolean pref that matches enable-per-user-time-zone chrome://flags value.
inline constexpr char kPerUserTimezoneEnabled[] =
"cros.flags.per_user_timezone_enabled";
// A boolean pref that matches enable-fine-grained-time-zone-detection
// chrome://flags value.
inline constexpr char kFineGrainedTimeZoneResolveEnabled[] =
"cros.flags.fine_grained_time_zone_detection_enabled";
// A dictionary pref containing time intervals and ignored policies.
// It's used to allow less restricted usage of Chrome OS during off-hours.
// This pref is set by an admin policy.
// Pref format:
// { "timezone" : string,
// "intervals" : list of Intervals,
// "ignored_policies" : string list }
// Interval dictionary format:
// { "start" : WeeklyTime,
// "end" : WeeklyTime }
// WeeklyTime dictionary format:
// { "weekday" : int # value is from 1 to 7 (1 = Monday, 2 = Tuesday, etc.)
// "time" : int # in milliseconds from the beginning of the day.
// }
inline constexpr char kDeviceOffHours[] = "cros.device_off_hours";
// An enum specifying the access policy device printers should observe.
inline constexpr char kDevicePrintersAccessMode[] =
"cros.device.printers_access_mode";
// A list of strings representing device printer ids for which access is
// restricted.
inline constexpr char kDevicePrintersBlocklist[] =
"cros.device.printers_blocklist";
// A list of strings representing the list of device printer ids which are
// accessible.
inline constexpr char kDevicePrintersAllowlist[] =
"cros.device.printers_allowlist";
// A dictionary containing parameters controlling the TPM firmware update
// functionality.
inline constexpr char kTPMFirmwareUpdateSettings[] =
"cros.tpm_firmware_update_settings";
// A dictionary containing a list of entries in JSON form representing the
// minimum version of Chrome OS along with warning times required to allow user
// sign in or stay in session. If the list is empty no restrictions will be
// applied.
inline constexpr char kDeviceMinimumVersion[] = "cros.device.min_version";
// String shown on the update required dialog on the the login screen containing
// return instructions from the device administrator. It is shown when update
// is required but the device has reached auto update expiration.
inline constexpr char kDeviceMinimumVersionAueMessage[] =
"cros.device.min_version_aue_message";
// String indicating what name should be advertised for casting to.
// If the string is empty or blank the system name will be used.
inline constexpr char kCastReceiverName[] = "cros.device.cast_receiver.name";
// A boolean pref that indicates whether unaffiliated users are allowed to
// use ARC.
inline constexpr char kUnaffiliatedArcAllowed[] =
"cros.device.unaffiliated_arc_allowed";
// A boolean pref that indicates whether Android VPN apps are allowed to
// be push installed.
inline constexpr char kDeviceFlexArcPreloadEnabled[] =
"cros.device.device_flex_arc_preload_enabled";
// A boolean pref that indicates whether users are allowed to configure the
// device hostname.
inline constexpr char kDeviceHostnameUserConfigurable[] =
"cros.device.hostname_user_configurable";
// String that is used as a template for generating device hostname (that is
// used in DHCP requests).
// If the string contains either ASSET_ID, SERIAL_NUM or MAC_ADDR values,
// they will be substituted for real values.
// If the string is empty or blank, or the resulting hostname is not valid
// as per RFC 1035, then no hostname will be used.
inline constexpr char kDeviceHostnameTemplate[] =
"cros.network.hostname_template";
// A boolean pref that indicates whether running virtual machines on Chrome OS
// is allowed.
inline constexpr char kVirtualMachinesAllowed[] =
"cros.device.virtual_machines_allowed";
// A list of time intervals during which the admin has disallowed automatic
// update checks.
inline constexpr char kDeviceAutoUpdateTimeRestrictions[] =
"cros.system.autoUpdateTimeRestrictions";
// A boolean pref that indicates whether running Crostini on Chrome OS is
// allowed for unaffiliated user.
inline constexpr char kDeviceUnaffiliatedCrostiniAllowed[] =
"cros.device.unaffiliated_crostini_allowed";
// A boolean pref that indicates whether PluginVm is allowed to run on this
// device.
inline constexpr char kPluginVmAllowed[] = "cros.device.plugin_vm_allowed";
// An enum pref specifying the case when device needs to reboot on user sign
// out.
inline constexpr char kDeviceRebootOnUserSignout[] =
"cros.device.reboot_on_user_signout";
// An enum pref that specifies the device dock MAC address source.
inline constexpr char kDeviceDockMacAddressSource[] =
"cros.device.device_dock_mac_address_source";
// A dictionary pref that mandates the recurring schedule for update checks. The
// schedule is followed even if the device is suspended, however, it's not
// respected when the device is shutdown.
inline constexpr char kDeviceScheduledUpdateCheck[] =
"cros.device.device_scheduled_update_check";
// An enum pref that configures the operation mode of the built-in 2nd factor
// authenticator.
inline constexpr char kDeviceSecondFactorAuthenticationMode[] =
"cros.device.device_second_factor_authentication_mode";
// A boolean pref specifying if the device is allowed to powerwash.
inline constexpr char kDevicePowerwashAllowed[] =
"cros.device.device_powerwash_allowed";
// A list pref storing URL patterns that are allowed for device attestation
// during SAML authentication.
extern inline constexpr char kDeviceWebBasedAttestationAllowedUrls[] =
"cros.device.device_web_based_attestation_allowed_urls";
// A dictionary containing parameters controlling the availability of
// System-proxy service and the web proxy credentials for system services
// connecting through System-proxy.
inline constexpr char kSystemProxySettings[] = "cros.system_proxy_settings";
inline constexpr char kSystemProxySettingsKeyEnabled[] = "system_proxy_enabled";
inline constexpr char kSystemProxySettingsKeySystemServicesUsername[] =
"system_services_username";
inline constexpr char kSystemProxySettingsKeySystemServicesPassword[] =
"system_services_password";
inline constexpr char kSystemProxySettingsKeyAuthSchemes[] =
"policy_credentials_auth_schemes";
// An enum pref that indicates whether adb sideloading is allowed on this device
inline constexpr char kDeviceCrostiniArcAdbSideloadingAllowed[] =
"cros.device.crostini_arc_adb_sideloading_allowed";
// A boolean pref controlling showing the low disk space notification.
inline constexpr char kDeviceShowLowDiskSpaceNotification[] =
"cros.device.show_low_disk_space_notification";
// A list of dictionaries indicating USB devices that may be used by chrome.usb.
inline constexpr char kUsbDetachableAllowlist[] =
"cros.device.usb_detachable_allowlist";
inline constexpr char kUsbDetachableAllowlistKeyVid[] = "vid";
inline constexpr char kUsbDetachableAllowlistKeyPid[] = "pid";
// Boolean pref indicating whether data access is enabled for
// Thunderbolt/USB4 peripherals. Enabling this pref disables the data access
// protection and will allow the aforementioned peripheral devices to be fully
// connected via PCIe tunneling.
inline constexpr char kDevicePeripheralDataAccessEnabled[] =
"cros.device.peripheral_data_access_enabled";
// A list pref storing bluetooth service UUIDs allowed to connect.
inline constexpr char kDeviceAllowedBluetoothServices[] =
"cros.device.allowed_bluetooth_services";
// A dictionary pref specifying the recurring schedule for device reboot.
inline constexpr char kDeviceScheduledReboot[] =
"cros.device.device_scheduled_reboot";
// A boolean specifying whether Chrome should operate in restricted managed
// guest session mode (block features that generate sensitive data and are not
// taken care of via clean-up mechanism in the managed guest session).
inline constexpr char kDeviceRestrictedManagedGuestSessionEnabled[] =
"cros.device.restricted_managed_guest_session_enabled";
// On reven board we collect hardware data of the device to provide relevant
// updates. A boolean pref specifies whether this data can be also used for
// overall improvements. This setting is available only on reven boards.
inline constexpr char kRevenEnableDeviceHWDataUsage[] =
"cros.reven.enable_hw_data_usage";
// A boolean that indicates whether the encrypted reporting pipeline is
// enabled or not.
inline constexpr char kDeviceEncryptedReportingPipelineEnabled[] =
"cros.device.encrypted_reporting_pipeline_enabled";
// A boolean pref that indicates whether reporting XDR events is enabled or not.
inline constexpr char kDeviceReportXDREvents[] =
"cros.device.device_report_xdr_events";
// String representing a template for the 'client-name' member of the
// 'client-info' IPP attribute that will be sent to IPP printers in case they
// support it. Maps to the `DevicePrintingClientNameTemplate` policy.
inline constexpr char kDevicePrintingClientNameTemplate[] =
"cros.device.printing.client_name_template";
// A boolean pref that indicates whether Hindi Inscript keyboard layout
// is available.
inline constexpr char kDeviceHindiInscriptLayoutEnabled[] =
"cros.device.hindi_inscript_layout_enabled";
inline constexpr char kDeviceUserInitiatedFirmwareUpdatesEnabled[] =
"cros.device.user_initiated_firmware_updates_enabled";
// A list of strings representing DLC identifiers to be pre downloaded on the
// device.
inline constexpr char kDeviceDlcPredownloadList[] =
"cros.device.device_dlc_predownload_list";
// A boolean pref specifying whether enterprise extensions can add logs to the
// system log file that is persisted between sessions.
inline constexpr char kDeviceExtensionsSystemLogEnabled[] =
"cros.device.extensions_system_log_enabled";
} // namespace ash
namespace chromeos {
using ::ash::kAccountsPrefAllowNewUser;
using ::ash::kAccountsPrefDeviceLocalAccountAutoLoginBailoutEnabled;
using ::ash::kAccountsPrefFamilyLinkAccountsAllowed;
using ::ash::kAccountsPrefLoginScreenDomainAutoComplete;
using ::ash::kDeviceCrostiniArcAdbSideloadingAllowed;
using ::ash::kDeviceOwner;
using ::ash::kDevicePeripheralDataAccessEnabled;
using ::ash::kDeviceSecondFactorAuthenticationMode;
using ::ash::kDeviceWebBasedAttestationAllowedUrls;
using ::ash::kFineGrainedTimeZoneResolveEnabled;
using ::ash::kLoginAuthenticationBehavior;
using ::ash::kSystemTimezone;
using ::ash::kSystemTimezonePolicy;
using ::ash::kTPMFirmwareUpdateSettings;
} // namespace chromeos
#endif // CHROMEOS_ASH_COMPONENTS_SETTINGS_CROS_SETTINGS_NAMES_H_
|