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 // Identifiers of a USB device or device family. | |
659 message UsbDeviceIdProto { | |
660 // USB Vendor Identifier (aka idVendor). | |
661 optional int32 vendor_id = 1; | |
662 // USB Product Identifier (aka idProduct). | |
663 optional int32 product_id = 2; | |
664 } | |
665 | |
666 // This setting contains the list of USB devices to detach from the kernel | |
667 // drivers in order to use them in web application. | |
bartfab (slow)
2016/02/29 12:20:31
Nit: s/application/applications/
vpalatin
2016/03/01 01:42:17
Done.
| |
668 // The list is used by the permission_broker daemon. | |
669 message UsbDetachableWhitelistProto { | |
670 repeated UsbDeviceIdProto id = 1; | |
671 } | |
672 | |
658 message ChromeDeviceSettingsProto { | 673 message ChromeDeviceSettingsProto { |
659 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 674 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
660 optional UserWhitelistProto user_whitelist = 2; | 675 optional UserWhitelistProto user_whitelist = 2; |
661 optional GuestModeEnabledProto guest_mode_enabled = 3; | 676 optional GuestModeEnabledProto guest_mode_enabled = 3; |
662 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 | 677 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 |
663 [deprecated = true]; | 678 [deprecated = true]; |
664 optional CameraEnabledProto camera_enabled = 5; | 679 optional CameraEnabledProto camera_enabled = 5; |
665 optional ShowUserNamesOnSigninProto show_user_names = 6; | 680 optional ShowUserNamesOnSigninProto show_user_names = 6; |
666 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 681 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
667 optional AllowNewUsersProto allow_new_users = 8; | 682 optional AllowNewUsersProto allow_new_users = 8; |
(...skipping 26 matching lines...) Expand all Loading... | |
694 optional SAMLSettingsProto saml_settings = 33; | 709 optional SAMLSettingsProto saml_settings = 33; |
695 optional RebootOnShutdownProto reboot_on_shutdown = 34; | 710 optional RebootOnShutdownProto reboot_on_shutdown = 34; |
696 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; | 711 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; |
697 optional ExtensionCacheSizeProto extension_cache_size = 36; | 712 optional ExtensionCacheSizeProto extension_cache_size = 36; |
698 optional LoginScreenDomainAutoCompleteProto | 713 optional LoginScreenDomainAutoCompleteProto |
699 login_screen_domain_auto_complete = 37; | 714 login_screen_domain_auto_complete = 37; |
700 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; | 715 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; |
701 optional DisplayRotationDefaultProto display_rotation_default = 39; | 716 optional DisplayRotationDefaultProto display_rotation_default = 39; |
702 optional AllowKioskAppControlChromeVersionProto | 717 optional AllowKioskAppControlChromeVersionProto |
703 allow_kiosk_app_control_chrome_version = 40; | 718 allow_kiosk_app_control_chrome_version = 40; |
719 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 41; | |
704 } | 720 } |
OLD | NEW |