| 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 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 optional int32 product_id = 2; | 675 optional int32 product_id = 2; |
| 676 } | 676 } |
| 677 | 677 |
| 678 // This setting contains the list of USB devices to detach from the kernel | 678 // This setting contains the list of USB devices to detach from the kernel |
| 679 // drivers in order to use them in web applications. | 679 // drivers in order to use them in web applications. |
| 680 // The list is used by the permission_broker daemon. | 680 // The list is used by the permission_broker daemon. |
| 681 message UsbDetachableWhitelistProto { | 681 message UsbDetachableWhitelistProto { |
| 682 repeated UsbDeviceIdProto id = 1; | 682 repeated UsbDeviceIdProto id = 1; |
| 683 } | 683 } |
| 684 | 684 |
| 685 message AllowBluetoothProto { |
| 686 // Policy which controls whether Bluetooth is available. |
| 687 optional bool allow_bluetooth = 1 [default = true]; |
| 688 } |
| 689 |
| 685 message ChromeDeviceSettingsProto { | 690 message ChromeDeviceSettingsProto { |
| 686 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 691 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
| 687 optional UserWhitelistProto user_whitelist = 2; | 692 optional UserWhitelistProto user_whitelist = 2; |
| 688 optional GuestModeEnabledProto guest_mode_enabled = 3; | 693 optional GuestModeEnabledProto guest_mode_enabled = 3; |
| 689 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 | 694 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 |
| 690 [deprecated = true]; | 695 [deprecated = true]; |
| 691 optional CameraEnabledProto camera_enabled = 5; | 696 optional CameraEnabledProto camera_enabled = 5; |
| 692 optional ShowUserNamesOnSigninProto show_user_names = 6; | 697 optional ShowUserNamesOnSigninProto show_user_names = 6; |
| 693 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 698 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
| 694 optional AllowNewUsersProto allow_new_users = 8; | 699 optional AllowNewUsersProto allow_new_users = 8; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 723 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; | 728 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; |
| 724 optional ExtensionCacheSizeProto extension_cache_size = 36; | 729 optional ExtensionCacheSizeProto extension_cache_size = 36; |
| 725 optional LoginScreenDomainAutoCompleteProto | 730 optional LoginScreenDomainAutoCompleteProto |
| 726 login_screen_domain_auto_complete = 37; | 731 login_screen_domain_auto_complete = 37; |
| 727 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; | 732 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; |
| 728 optional DisplayRotationDefaultProto display_rotation_default = 39; | 733 optional DisplayRotationDefaultProto display_rotation_default = 39; |
| 729 optional AllowKioskAppControlChromeVersionProto | 734 optional AllowKioskAppControlChromeVersionProto |
| 730 allow_kiosk_app_control_chrome_version = 40; | 735 allow_kiosk_app_control_chrome_version = 40; |
| 731 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; | 736 optional LoginAuthenticationBehaviorProto login_authentication_behavior = 41; |
| 732 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; | 737 optional UsbDetachableWhitelistProto usb_detachable_whitelist = 42; |
| 738 optional AllowBluetoothProto allow_bluetooth = 43; |
| 733 } | 739 } |
| OLD | NEW |