OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 // will be enabled when the login screen is shown. If this policy is set to | 458 // will be enabled when the login screen is shown. If this policy is set to |
459 // false, the on-screen keyboard will be disabled when the login screen is | 459 // false, the on-screen keyboard will be disabled when the login screen is |
460 // shown. Users can temporarily override this setting by enabling or disabling | 460 // shown. Users can temporarily override this setting by enabling or disabling |
461 // the on-screen keyboard. However, the user's choice is not persistent and | 461 // the on-screen keyboard. However, the user's choice is not persistent and |
462 // the default is restored whenever the login screen is shown anew or the user | 462 // the default is restored whenever the login screen is shown anew or the user |
463 // remains idle on the login screen for a minute. If this policy is left | 463 // remains idle on the login screen for a minute. If this policy is left |
464 // unset, the on-screen keyboard is disabled when the login screen is first | 464 // unset, the on-screen keyboard is disabled when the login screen is first |
465 // shown. Users can enable or disable the on-screen keyboard anytime and its | 465 // shown. Users can enable or disable the on-screen keyboard anytime and its |
466 // status on the login screen is persisted between users. | 466 // status on the login screen is persisted between users. |
467 optional bool login_screen_default_virtual_keyboard_enabled = 5; | 467 optional bool login_screen_default_virtual_keyboard_enabled = 5; |
| 468 |
| 469 // If this policy is not configured or set to a blank string, |
| 470 // no autocomplete option during user sign-in flow will be shown. |
| 471 // If this policy is set to a string representing a domain name, an |
| 472 // autocomplete option during user sign-in will be shown allowing the user |
| 473 // to type in only his user name without the domain name extension. The user |
| 474 // will be able to overwrite this domain name extension. |
| 475 optional string login_screen_domain_auto_complete = 6; |
468 } | 476 } |
469 | 477 |
470 message SupervisedUsersSettingsProto { | 478 message SupervisedUsersSettingsProto { |
471 // Defines whether supervised users can be created on the device. | 479 // Defines whether supervised users can be created on the device. |
472 optional bool supervised_users_enabled = 1; | 480 optional bool supervised_users_enabled = 1; |
473 } | 481 } |
474 | 482 |
475 message LoginScreenPowerManagementProto { | 483 message LoginScreenPowerManagementProto { |
476 // Configures power management on the login screen. The policy should be | 484 // Configures power management on the login screen. The policy should be |
477 // specified as a string that expresses the individual settings in JSON | 485 // specified as a string that expresses the individual settings in JSON |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
647 optional SupervisedUsersSettingsProto supervised_users_settings = 28; | 655 optional SupervisedUsersSettingsProto supervised_users_settings = 28; |
648 optional LoginScreenPowerManagementProto login_screen_power_management = 29; | 656 optional LoginScreenPowerManagementProto login_screen_power_management = 29; |
649 optional SystemUse24HourClockProto use_24hour_clock = 30; | 657 optional SystemUse24HourClockProto use_24hour_clock = 30; |
650 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; | 658 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; |
651 optional SystemSettingsProto system_settings = 32; | 659 optional SystemSettingsProto system_settings = 32; |
652 optional SAMLSettingsProto saml_settings = 33; | 660 optional SAMLSettingsProto saml_settings = 33; |
653 optional RebootOnShutdownProto reboot_on_shutdown = 34; | 661 optional RebootOnShutdownProto reboot_on_shutdown = 34; |
654 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; | 662 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; |
655 optional ExtensionCacheSizeProto extension_cache_size = 36; | 663 optional ExtensionCacheSizeProto extension_cache_size = 36; |
656 } | 664 } |
OLD | NEW |