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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 }; | 648 }; |
649 optional Rotation display_rotation_default = 1; | 649 optional Rotation display_rotation_default = 1; |
650 } | 650 } |
651 | 651 |
652 // Settings that control whether to allow Chrome to be pinned to a specific | 652 // Settings that control whether to allow Chrome to be pinned to a specific |
653 // version according to the auto-launched kiosk app’s requirement. | 653 // version according to the auto-launched kiosk app’s requirement. |
654 message AllowKioskAppControlChromeVersionProto { | 654 message AllowKioskAppControlChromeVersionProto { |
655 optional bool allow_kiosk_app_control_chrome_version = 1 [default = false]; | 655 optional bool allow_kiosk_app_control_chrome_version = 1 [default = false]; |
656 } | 656 } |
657 | 657 |
| 658 // Settings that control whether a device can download hardware configuration |
| 659 // files from the Quirks Server. |
| 660 message DeviceQuirksDownloadEnabledProto { |
| 661 optional bool quirks_download_enabled = 1 [default = true]; |
| 662 } |
| 663 |
658 message ChromeDeviceSettingsProto { | 664 message ChromeDeviceSettingsProto { |
659 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 665 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
660 optional UserWhitelistProto user_whitelist = 2; | 666 optional UserWhitelistProto user_whitelist = 2; |
661 optional GuestModeEnabledProto guest_mode_enabled = 3; | 667 optional GuestModeEnabledProto guest_mode_enabled = 3; |
662 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 | 668 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 |
663 [deprecated = true]; | 669 [deprecated = true]; |
664 optional CameraEnabledProto camera_enabled = 5; | 670 optional CameraEnabledProto camera_enabled = 5; |
665 optional ShowUserNamesOnSigninProto show_user_names = 6; | 671 optional ShowUserNamesOnSigninProto show_user_names = 6; |
666 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 672 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
667 optional AllowNewUsersProto allow_new_users = 8; | 673 optional AllowNewUsersProto allow_new_users = 8; |
(...skipping 26 matching lines...) Expand all Loading... |
694 optional SAMLSettingsProto saml_settings = 33; | 700 optional SAMLSettingsProto saml_settings = 33; |
695 optional RebootOnShutdownProto reboot_on_shutdown = 34; | 701 optional RebootOnShutdownProto reboot_on_shutdown = 34; |
696 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; | 702 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; |
697 optional ExtensionCacheSizeProto extension_cache_size = 36; | 703 optional ExtensionCacheSizeProto extension_cache_size = 36; |
698 optional LoginScreenDomainAutoCompleteProto | 704 optional LoginScreenDomainAutoCompleteProto |
699 login_screen_domain_auto_complete = 37; | 705 login_screen_domain_auto_complete = 37; |
700 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; | 706 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; |
701 optional DisplayRotationDefaultProto display_rotation_default = 39; | 707 optional DisplayRotationDefaultProto display_rotation_default = 39; |
702 optional AllowKioskAppControlChromeVersionProto | 708 optional AllowKioskAppControlChromeVersionProto |
703 allow_kiosk_app_control_chrome_version = 40; | 709 allow_kiosk_app_control_chrome_version = 40; |
| 710 optional DeviceQuirksDownloadEnabledProto quirks_download_enabled = 41; |
704 } | 711 } |
OLD | NEW |