| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 syntax = "proto2"; | 5 syntax = "proto2"; |
| 6 | 6 |
| 7 option optimize_for = LITE_RUNTIME; | 7 option optimize_for = LITE_RUNTIME; |
| 8 | 8 |
| 9 package enterprise_management; | 9 package enterprise_management; |
| 10 | 10 |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 // Attestation involves proving that a cryptographic key is protected by a | 340 // Attestation involves proving that a cryptographic key is protected by a |
| 341 // legitimate Chrome OS TPM and reporting the operating mode of the platform. | 341 // legitimate Chrome OS TPM and reporting the operating mode of the platform. |
| 342 // This setting enables attestation features at a device level. If this is | 342 // This setting enables attestation features at a device level. If this is |
| 343 // enabled a machine key will be generated and certified by the Chrome OS | 343 // enabled a machine key will be generated and certified by the Chrome OS |
| 344 // CA. If this setting is disabled, the device will not communicate with the | 344 // CA. If this setting is disabled, the device will not communicate with the |
| 345 // Chrome OS CA under any circumstances. Even users with attestation settings | 345 // Chrome OS CA under any circumstances. Even users with attestation settings |
| 346 // enabled will not be able to use those features on the device. | 346 // enabled will not be able to use those features on the device. |
| 347 optional bool attestation_enabled = 1; | 347 optional bool attestation_enabled = 1; |
| 348 } | 348 } |
| 349 | 349 |
| 350 message AccessibilitySettingsProto { | |
| 351 // Sets the default state of the large cursor accessibility feature on the | |
| 352 // login screen. If this policy is set to true, the large cursor will be | |
| 353 // enabled when the login screen is shown. If this policy is set to false, the | |
| 354 // large cursor will be disabled when the login screen is shown. Users can | |
| 355 // temporarily override this setting by enabling or disabling the large | |
| 356 // cursor. However, the user's choice is not persistent and the default is | |
| 357 // restored whenever the login screen is shown anew or the user remains idle | |
| 358 // on the login screen for a minute. If this policy is left unset, the large | |
| 359 // cursor is disabled when the login screen is first shown. Users can enable | |
| 360 // or disable the large cursor anytime and its status on the login screen is | |
| 361 // persisted between users. | |
| 362 optional bool login_screen_default_large_cursor_enabled = 1; | |
| 363 | |
| 364 // Sets the default state of the spoken feedback accessibility feature on the | |
| 365 // login screen. If this policy is set to true, spoken feedback will be | |
| 366 // enabled when the login screen is shown. If this policy is set to false, | |
| 367 // spoken feedback will be disabled when the login screen is shown. Users can | |
| 368 // temporarily override this setting by enabling or disabling spoken feedback. | |
| 369 // However, the user's choice is not persistent and the default is restored | |
| 370 // whenever the login screen is shown anew or the user remains idle on the | |
| 371 // login screen for a minute. If this policy is left unset, spoken feedback is | |
| 372 // disabled when the login screen is first shown. Users can enable or disable | |
| 373 // spoken feedback anytime and its status on the login screen is persisted | |
| 374 // between users. | |
| 375 optional bool login_screen_default_spoken_feedback_enabled = 2; | |
| 376 | |
| 377 // Sets the default state of the high contrast mode accessibility feature on | |
| 378 // the login screen. If this policy is set to true, high contrast mode will be | |
| 379 // enabled when the login screen is shown. If this policy is set to false, | |
| 380 // high contrast mode will be disabled when the login screen is shown. Users | |
| 381 // can temporarily override this setting by enabling or disabling high | |
| 382 // contrast mode. However, the user's choice is not persistent and the default | |
| 383 // is restored whenever the login screen is shown anew or the user remains | |
| 384 // idle on the login screen for a minute. If this policy is left unset, high | |
| 385 // contrast mode is disabled when the login screen is first shown. Users can | |
| 386 // enable or disable high contrast mode anytime and its status on the login | |
| 387 // screen is persisted between users. | |
| 388 optional bool login_screen_default_high_contrast_enabled = 3; | |
| 389 | |
| 390 // Enumerates the screen magnifier types. | |
| 391 enum ScreenMagnifierType { | |
| 392 // Screen magnifier disabled. | |
| 393 SCREEN_MAGNIFIER_TYPE_NONE = 0; | |
| 394 // Full-screen magnifier enabled. | |
| 395 SCREEN_MAGNIFIER_TYPE_FULL = 1; | |
| 396 }; | |
| 397 | |
| 398 // Sets the default type of screen magnifier that is enabled on the login | |
| 399 // screen. If this policy is set, it controls the type of screen magnifier | |
| 400 // that is enabled when the login screen is shown. Users can temporarily | |
| 401 // override this setting by enabling or disabling the screen magnifier. | |
| 402 // However, the user's choice is not persistent and the default is restored | |
| 403 // whenever the login screen is shown anew or the user remains idle on the | |
| 404 // login screen for a minute. If this policy is left unset, the screen | |
| 405 // magnifier is disabled when the login screen is first shown. Users can | |
| 406 // enable or disable the screen magnifier anytime and its status on the login | |
| 407 // screen is persisted between users. | |
| 408 optional ScreenMagnifierType login_screen_default_screen_magnifier_type = 4; | |
| 409 } | |
| 410 | |
| 411 message ChromeDeviceSettingsProto { | 350 message ChromeDeviceSettingsProto { |
| 412 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 351 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 413 optional UserWhitelistProto user_whitelist = 2; | 352 optional UserWhitelistProto user_whitelist = 2; |
| 414 optional GuestModeEnabledProto guest_mode_enabled = 3; | 353 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 415 optional DeviceProxySettingsProto device_proxy_settings = 4; | 354 optional DeviceProxySettingsProto device_proxy_settings = 4; |
| 416 optional CameraEnabledProto camera_enabled = 5; | 355 optional CameraEnabledProto camera_enabled = 5; |
| 417 optional ShowUserNamesOnSigninProto show_user_names = 6; | 356 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 418 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 357 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 419 optional AllowNewUsersProto allow_new_users = 8; | 358 optional AllowNewUsersProto allow_new_users = 8; |
| 420 optional MetricsEnabledProto metrics_enabled = 9; | 359 optional MetricsEnabledProto metrics_enabled = 9; |
| 421 optional ReleaseChannelProto release_channel = 10; | 360 optional ReleaseChannelProto release_channel = 10; |
| 422 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; | 361 optional DeviceOpenNetworkConfigurationProto open_network_configuration = 11; |
| 423 optional DeviceReportingProto device_reporting = 12; | 362 optional DeviceReportingProto device_reporting = 12; |
| 424 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; | 363 optional EphemeralUsersEnabledProto ephemeral_users_enabled = 13; |
| 425 optional AppPackProto app_pack = 14; | 364 optional AppPackProto app_pack = 14; |
| 426 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; | 365 optional ForcedLogoutTimeoutsProto forced_logout_timeouts = 15; |
| 427 optional ScreenSaverProto login_screen_saver = 16; | 366 optional ScreenSaverProto login_screen_saver = 16; |
| 428 optional AutoUpdateSettingsProto auto_update_settings = 17; | 367 optional AutoUpdateSettingsProto auto_update_settings = 17; |
| 429 optional StartUpUrlsProto start_up_urls = 18; | 368 optional StartUpUrlsProto start_up_urls = 18; |
| 430 optional PinnedAppsProto pinned_apps = 19; | 369 optional PinnedAppsProto pinned_apps = 19; |
| 431 optional SystemTimezoneProto system_timezone = 20; | 370 optional SystemTimezoneProto system_timezone = 20; |
| 432 optional DeviceLocalAccountsProto device_local_accounts = 21; | 371 optional DeviceLocalAccountsProto device_local_accounts = 21; |
| 433 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; | 372 optional AllowRedeemChromeOsRegistrationOffersProto allow_redeem_offers = 22; |
| 434 optional StartUpFlagsProto start_up_flags = 23; | 373 optional StartUpFlagsProto start_up_flags = 23; |
| 435 optional UptimeLimitProto uptime_limit = 24; | 374 optional UptimeLimitProto uptime_limit = 24; |
| 436 optional VariationsParameterProto variations_parameter = 25; | 375 optional VariationsParameterProto variations_parameter = 25; |
| 437 optional AttestationSettingsProto attestation_settings = 26; | 376 optional AttestationSettingsProto attestation_settings = 26; |
| 438 optional AccessibilitySettingsProto accessibility_settings = 27; | |
| 439 } | 377 } |
| OLD | NEW |