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 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
641 // This enum corresponds to gfx::Display::Rotation in ui/gfx/display.h. | 641 // This enum corresponds to gfx::Display::Rotation in ui/gfx/display.h. |
642 enum Rotation { | 642 enum Rotation { |
643 ROTATE_0 = 0; | 643 ROTATE_0 = 0; |
644 ROTATE_90 = 1; | 644 ROTATE_90 = 1; |
645 ROTATE_180 = 2; | 645 ROTATE_180 = 2; |
646 ROTATE_270 = 3; | 646 ROTATE_270 = 3; |
647 }; | 647 }; |
648 optional Rotation display_rotation_default = 1; | 648 optional Rotation display_rotation_default = 1; |
649 } | 649 } |
650 | 650 |
| 651 // Settings that control whether to allow Chrome to be pinned to a specific |
| 652 // version according to the auto-launched kiosk app’s requirement. |
| 653 message AllowKioskAppControlChromeVersionProto { |
| 654 optional bool allow_kiosk_app_control_chrome_version = 1 [default = false]; |
| 655 } |
| 656 |
651 message ChromeDeviceSettingsProto { | 657 message ChromeDeviceSettingsProto { |
652 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; | 658 optional DevicePolicyRefreshRateProto device_policy_refresh_rate = 1; |
653 optional UserWhitelistProto user_whitelist = 2; | 659 optional UserWhitelistProto user_whitelist = 2; |
654 optional GuestModeEnabledProto guest_mode_enabled = 3; | 660 optional GuestModeEnabledProto guest_mode_enabled = 3; |
655 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 | 661 optional OBSOLETE_DeviceProxySettingsProto device_proxy_settings = 4 |
656 [deprecated = true]; | 662 [deprecated = true]; |
657 optional CameraEnabledProto camera_enabled = 5; | 663 optional CameraEnabledProto camera_enabled = 5; |
658 optional ShowUserNamesOnSigninProto show_user_names = 6; | 664 optional ShowUserNamesOnSigninProto show_user_names = 6; |
659 optional DataRoamingEnabledProto data_roaming_enabled = 7; | 665 optional DataRoamingEnabledProto data_roaming_enabled = 7; |
660 optional AllowNewUsersProto allow_new_users = 8; | 666 optional AllowNewUsersProto allow_new_users = 8; |
(...skipping 24 matching lines...) Expand all Loading... |
685 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; | 691 optional AutoCleanupSettigsProto auto_clean_up_settings = 31; |
686 optional SystemSettingsProto system_settings = 32; | 692 optional SystemSettingsProto system_settings = 32; |
687 optional SAMLSettingsProto saml_settings = 33; | 693 optional SAMLSettingsProto saml_settings = 33; |
688 optional RebootOnShutdownProto reboot_on_shutdown = 34; | 694 optional RebootOnShutdownProto reboot_on_shutdown = 34; |
689 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; | 695 optional DeviceHeartbeatSettingsProto device_heartbeat_settings = 35; |
690 optional ExtensionCacheSizeProto extension_cache_size = 36; | 696 optional ExtensionCacheSizeProto extension_cache_size = 36; |
691 optional LoginScreenDomainAutoCompleteProto | 697 optional LoginScreenDomainAutoCompleteProto |
692 login_screen_domain_auto_complete = 37; | 698 login_screen_domain_auto_complete = 37; |
693 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; | 699 optional DeviceLogUploadSettingsProto device_log_upload_settings = 38; |
694 optional DisplayRotationDefaultProto display_rotation_default = 39; | 700 optional DisplayRotationDefaultProto display_rotation_default = 39; |
| 701 optional AllowKioskAppControlChromeVersionProto |
| 702 allow_kiosk_app_control_chrome_version = 40; |
695 } | 703 } |
OLD | NEW |