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 message AllowBluetoothProto { | |
659 // Policy which disables the bluetooth if the flag is set to false. | |
bartfab (slow)
2016/03/07 11:28:24
Nit: s/disables the bluetooth if the flag is set t
Ivan Šandrk
2016/03/07 13:07:44
Done.
| |
660 optional bool allow_bluetooth = 1 [default = true]; | |
661 } | |
662 | |
658 message ChromeDeviceSettingsProto { | 663 message ChromeDeviceSettingsProto { |
659 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 664 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
660 optional UserWhitelistProto user_whitelist = 2; | 665 optional UserWhitelistProto user_whitelist = 2; |
661 optional GuestModeEnabledProto guest_mode_enabled = 3; | 666 optional GuestModeEnabledProto guest_mode_enabled = 3; |
662 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 | 667 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 |
663 [deprecated = true]; | 668 [deprecated = true]; |
664 optional CameraEnabledProto camera_enabled = 5; | 669 optional CameraEnabledProto camera_enabled = 5; |
665 optional ShowUserNamesOnSigninProto show_user_names = 6; | 670 optional ShowUserNamesOnSigninProto show_user_names = 6; |
666 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 671 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
667 optional AllowNewUsersProto allow_new_users = 8; | 672 optional AllowNewUsersProto allow_new_users = 8; |
(...skipping 26 matching lines...) Expand all Loading... | |
694 optional SAMLSettingsProto saml_settings = 33; | 699 optional SAMLSettingsProto saml_settings = 33; |
695 optional RebootOnShutdownProto reboot_on_shutdown = 34; | 700 optional RebootOnShutdownProto reboot_on_shutdown = 34; |
696 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; | 701 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; |
697 optional ExtensionCacheSizeProto extension_cache_size = 36; | 702 optional ExtensionCacheSizeProto extension_cache_size = 36; |
698 optional LoginScreenDomainAutoCompleteProto | 703 optional LoginScreenDomainAutoCompleteProto |
699 login_screen_domain_auto_complete = 37; | 704 login_screen_domain_auto_complete = 37; |
700 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; | 705 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; |
701 optional DisplayRotationDefaultProto display_rotation_default = 39; | 706 optional DisplayRotationDefaultProto display_rotation_default = 39; |
702 optional AllowKioskAppControlChromeVersionProto | 707 optional AllowKioskAppControlChromeVersionProto |
703 allow_kiosk_app_control_chrome_version = 40; | 708 allow_kiosk_app_control_chrome_version = 40; |
709 optional AllowBluetoothProto allow_bluetooth = 41; | |
704 } | 710 } |
OLD | NEW |